mirror of
https://git.lewd.wtf/PGR/ascnet
synced 2025-12-12 22:44:37 +01:00
18 lines
435 B
C#
18 lines
435 B
C#
namespace AscNet.Logging
|
|
{
|
|
public class LogLevelColor
|
|
{
|
|
|
|
public ConsoleColor Debug { get; set; } = ConsoleColor.Magenta;
|
|
|
|
public ConsoleColor Info { get; set; } = ConsoleColor.Green;
|
|
|
|
public ConsoleColor Warning { get; set; } = ConsoleColor.Yellow;
|
|
|
|
public ConsoleColor Error { get; set; } = ConsoleColor.Red;
|
|
|
|
public ConsoleColor Fatal { get; set; } = ConsoleColor.DarkRed;
|
|
|
|
}
|
|
}
|