Skip to content

Commit c615a03

Browse files
Undo color change
1 parent 024b394 commit c615a03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RLBotCS/ManagerTools/Logging.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace RLBotCS.ManagerTools;
66
public class Logging : ILogger
77
{
88
private const string Grey = "\x1b[38;20m";
9-
private const string Cyan = "\x1b[36;20m";
9+
private const string LightBlue = "\x1b[34;20m";
1010
private const string Yellow = "\x1b[33;20m";
1111
private const string Green = "\x1b[32;20m";
1212
private const string Red = "\x1b[31;20m";
@@ -76,8 +76,8 @@ private string[] GetLogLevelColors(LogLevel logLevel) =>
7676
logLevel switch
7777
{
7878
LogLevel.Trace => new[] { Grey, Grey, Grey, Grey },
79-
LogLevel.Debug => new[] { Grey, Cyan, Grey, Cyan },
80-
LogLevel.Information => new[] { Grey, Grey, Grey, Cyan },
79+
LogLevel.Debug => new[] { Grey, Grey, Grey, LightBlue },
80+
LogLevel.Information => new[] { Grey, LightBlue, Grey, LightBlue },
8181
LogLevel.Warning => new[] { Yellow, Yellow, Yellow, Yellow },
8282
LogLevel.Error => new[] { Red, Red, Red, Red },
8383
LogLevel.Critical => new[] { Red, BoldRed, Red, BoldRed },

0 commit comments

Comments
 (0)