mirror of
https://github.com/fergalmoran/snapp-cli.git
synced 2025-12-22 10:00:52 +00:00
18 lines
344 B
C#
18 lines
344 B
C#
using Spectre.Console;
|
|
|
|
namespace Snapp.Cli.Helpers;
|
|
|
|
public static class Log {
|
|
private static readonly object _lock = new();
|
|
|
|
public static void Debug(string message) {
|
|
#if DEBUG
|
|
lock (_lock) {
|
|
Console.ForegroundColor = ConsoleColor.DarkGray;
|
|
Console.WriteLine($"{message}");
|
|
Console.ResetColor();
|
|
}
|
|
#endif
|
|
}
|
|
}
|