Stop IIS from writing "iisexpress" to the console, over and over.

pull/3113/head
Mark McDowall 13 years ago
parent 59c1da399e
commit 0a8f8fadc4

@ -117,7 +117,7 @@ namespace NzbDrone.Providers
private void OnOutputDataReceived(object s, DataReceivedEventArgs e)
{
if (e == null || String.IsNullOrWhiteSpace(e.Data) || e.Data.StartsWith("Request started:") ||
e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called"))
e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called") || e.Data == "iisexpress")
return;
//if (e.Data.Contains(" NzbDrone."))

Loading…
Cancel
Save