mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Merge #1694
1694: Fix inconsistant uppercase server in logs r=def- a=ChillerDragon ``` $ grep -nr 'IConsole::OUTPUT_LEVEL_STANDARD, "server"' src/ | wc -l 31 $ grep -nr 'IConsole::OUTPUT_LEVEL_STANDARD, "Server"' src/ | wc -l 1 ``` Co-authored-by: ChillerDragon <chillerdragon@gmail.com>
This commit is contained in:
commit
9699d4ef06
|
@ -2200,7 +2200,7 @@ void CServer::ConStatus(IConsole::IResult *pResult, void *pUser)
|
|||
{
|
||||
str_format(aBuf, sizeof(aBuf), "id=%d addr=<{%s}> connecting", i, aAddrStr);
|
||||
}
|
||||
pThis->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "Server", aBuf);
|
||||
pThis->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "server", aBuf);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue