Broadcast in headless mode.

This commit is contained in:
flash 2019-02-11 16:29:50 +01:00
parent 8709357851
commit 36644423f5

View file

@ -213,20 +213,20 @@ namespace BackupManager
public static void Log(object line, bool forceSatori = false) public static void Log(object line, bool forceSatori = false)
{ {
if (Headless) if (!Headless)
return;
if (sw?.IsRunning == true)
{ {
ConsoleColor fg = Console.ForegroundColor; if (sw?.IsRunning == true)
Console.ForegroundColor = ConsoleColor.Yellow; {
Console.Write(sw.ElapsedMilliseconds.ToString().PadRight(10)); ConsoleColor fg = Console.ForegroundColor;
Console.ForegroundColor = fg; Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write(sw.ElapsedMilliseconds.ToString().PadRight(10));
Console.ForegroundColor = fg;
}
Console.WriteLine(line);
} }
Console.WriteLine(line); if (forceSatori || (!Headless && !(Config?.SatoriErrorsOnly ?? true)))
if (forceSatori || !(Config?.SatoriErrorsOnly ?? true))
SatoriBroadcast(line.ToString()); SatoriBroadcast(line.ToString());
} }