Skip to content

Commit 1deb243

Browse files
committed
Fix CSourcePython::OnQueryCvarValueFinished debug message.
1 parent 0b26c0c commit 1deb243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/sp_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ PLUGIN_RESULT CSourcePython::NetworkIDValidated( const char *pszUserName, const
380380
void CSourcePython::OnQueryCvarValueFinished( QueryCvarCookie_t iCookie, edict_t *pPlayerEntity,
381381
EQueryCvarValueStatus eStatus, const char *pCvarName, const char *pCvarValue )
382382
{
383-
PythonLog(1, "Cvar query (cookie: %d, status: %d) - name: %s, value: %s\n", iCookie, eStatus, pCvarName, pCvarValue );
383+
PythonLog(4, "Cvar query (cookie: %d, status: %d) - name: %s, value: %s\n", iCookie, eStatus, pCvarName, pCvarValue );
384384
CALL_LISTENERS(OnQueryCvarValueFinished, (int) iCookie, IndexFromEdict(pPlayerEntity), eStatus, pCvarName, pCvarValue);
385385
}
386386

0 commit comments

Comments
 (0)