Files
Shrink-IDC/Utility/Console.cs
Eicy 88abc095c2 init
Signed-off-by: Eicy <im@crash.work>
2024-12-17 00:23:59 +08:00

16 lines
508 B
C#

using Lagrange.Core.Event.EventArg;
namespace Shrink.Utility;
public static class Console
{
public static void ChangeColorByTitle(this LogLevel level) => System.Console.ForegroundColor = level switch
{
LogLevel.Debug => ConsoleColor.White,
LogLevel.Verbose => ConsoleColor.DarkGray,
LogLevel.Information => ConsoleColor.Blue,
LogLevel.Warning => ConsoleColor.Yellow,
LogLevel.Fatal => ConsoleColor.Red,
_ => System.Console.ForegroundColor
};
}