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

This commit is contained in:
Mark McDowall 2011-11-11 22:27:31 -08:00
parent 59c1da399e
commit 0a8f8fadc4
1 changed files with 1 additions and 1 deletions

View File

@ -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."))