mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
Process start logged as Debug instead of Info.
This commit is contained in:
parent
cfc29f4424
commit
118089c272
@ -116,7 +116,7 @@ public Process Start(string path, string args = null, Action<string> onOutputDat
|
||||
};
|
||||
|
||||
|
||||
logger.Info("Starting {0} {1}", path, args);
|
||||
logger.Debug("Starting {0} {1}", path, args);
|
||||
|
||||
var process = new Process
|
||||
{
|
||||
@ -163,7 +163,7 @@ public Process SpawnNewProcess(string path, string args = null)
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user