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 56d8f22fc5
commit 95dfd5a6cd

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);
}