Minor fix to logger

Signed-off-by: Harry Young <hendrik.gerritzen@googlemail.com>
This commit is contained in:
Harry Young 2013-08-25 20:21:16 +02:00
parent 633d9e653c
commit 71d85b5caf

View file

@ -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;
}
}