Skip to content

Commit e8eeed3

Browse files
committed
common: disable logging suppression in Info_Print() (used by commands like /systeminfo and /serverinfo)
1 parent 5b162ee commit e8eeed3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/engine/qcommon/common.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ void Info_Print( const char *s )
124124
*o = 0;
125125
}
126126

127-
Log::Notice( key );
127+
Log::defaultLogger.WithoutSuppression().Notice( key );
128128

129129
if ( !*s )
130130
{
131-
Log::Notice( "MISSING VALUE" );
131+
Log::defaultLogger.WithoutSuppression().Notice( "MISSING VALUE" );
132132
return;
133133
}
134134

@@ -147,7 +147,7 @@ void Info_Print( const char *s )
147147
s++;
148148
}
149149

150-
Log::Notice( "%s", value );
150+
Log::defaultLogger.WithoutSuppression().Notice( value );
151151
}
152152
}
153153

0 commit comments

Comments
 (0)