1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00

Process start logged as Debug instead of Info.

This commit is contained in:
Taloth Saldono
2014-03-27 23:13:37 +01:00
committed by Taloth
parent cfc29f4424
commit 118089c272
@@ -116,7 +116,7 @@ namespace NzbDrone.Common.Processes
};
logger.Info("Starting {0} {1}", path, args);
logger.Debug("Starting {0} {1}", path, args);
var process = new Process
{
@@ -163,7 +163,7 @@ namespace NzbDrone.Common.Processes
path = "mono";
}
Logger.Info("Starting {0} {1}", path, args);
Logger.Debug("Starting {0} {1}", path, args);
var startInfo = new ProcessStartInfo(path, args);
var process = new Process