We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68111c1 commit ddd375dCopy full SHA for ddd375d
src/engine/qcommon/common.cpp
@@ -124,11 +124,11 @@ void Info_Print( const char *s )
124
*o = 0;
125
}
126
127
- Log::Notice( key );
+ Log::defaultLogger.WithoutSuppression().Notice( key );
128
129
if ( !*s )
130
{
131
- Log::Notice( "MISSING VALUE" );
+ Log::defaultLogger.WithoutSuppression().Notice( "MISSING VALUE" );
132
return;
133
134
@@ -147,7 +147,7 @@ void Info_Print( const char *s )
147
s++;
148
149
150
- Log::Notice( "%s", value );
+ Log::defaultLogger.WithoutSuppression().Notice( value );
151
152
153
0 commit comments