Removed "nzbdrone" "iisexpress" spam from console.

This commit is contained in:
kay.one 2011-12-01 21:43:50 -08:00
parent cc60b972fd
commit 2eb14d93b7
2 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@ namespace NzbDrone.Common
{
if (isInDebug || Debugger.IsAttached) return false;
Console.WriteLine(processName);
if (processName.Contains("nunit")) return false;
if (processName.Contains("jetbrain")) return false;
if (processName.Contains("resharper")) return false;

View File

@ -118,7 +118,7 @@ namespace NzbDrone.Common
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 == "iisexpress" || e.Data == "nzbdrone")
e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called"))
return;
Console.WriteLine(e.Data);