mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-22 08:50:48 +00:00
Minor fix to logger
Signed-off-by: Harry Young <hendrik.gerritzen@googlemail.com>
This commit is contained in:
parent
633d9e653c
commit
71d85b5caf
1 changed files with 4 additions and 4 deletions
|
@ -21,17 +21,17 @@ void QDECL G_Logger (int level, char* fmt, ...) {
|
|||
G_Printf(S_COLOR_YELLOW "[game][warn ] - %s", text);
|
||||
break;
|
||||
case LL_INFO:
|
||||
G_Printf("[game][info ] %s - ", text);
|
||||
G_Printf("[game][info ] - %s", text);
|
||||
break;
|
||||
case LL_DEBUG:
|
||||
G_Printf("[game][debug] %s - ", text);
|
||||
G_Printf("[game][debug] - %s", text);
|
||||
break;
|
||||
case LL_TRACE:
|
||||
G_Printf("[game][trace] %s - ", text);
|
||||
G_Printf("[game][trace] - %s", text);
|
||||
break;
|
||||
case LL_ALWAYS:
|
||||
default:
|
||||
G_Printf("[game] %s - ", text);
|
||||
G_Printf("[game] - %s", text);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue