Base: fix verbose checking in Console::Log()

This commit is contained in:
Zheng, Lei
2019-09-04 14:36:36 +08:00
committed by wmayer
parent 03770fc725
commit 14fedb0965

View File

@@ -331,7 +331,7 @@ void ConsoleSingleton::Error( const char *pMsg, ... )
void ConsoleSingleton::Log( const char *pMsg, ... )
{
if (!_bVerbose)
if (_bVerbose)
{
FC_CONSOLE_FMT(Log,Log);
}