mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-24 16:51:58 +00:00
Stop IIS from writing "iisexpress" to the console, over and over.
This commit is contained in:
parent
59c1da399e
commit
0a8f8fadc4
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ public void RestartServer()
|
|||
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…
Reference in a new issue