Add color code for LogDebug

fixes #7416
This commit is contained in:
Gunnar Beutner 2014-10-19 02:39:45 +02:00
parent b0d7d8dabc
commit eb77b1534a
1 changed files with 3 additions and 0 deletions

View File

@ -103,6 +103,9 @@ void StreamLogger::ProcessLogEntry(std::ostream& stream, const LogEntry& entry)
ConsoleColor color;
switch (entry.Severity) {
case LogDebug:
color = Console_ForegroundCyan;
break;
case LogNotice:
color = Console_ForegroundBlue;
break;