Skip to content

Commit

Permalink
Base: fix verbose checking in Console::Log()
Browse files Browse the repository at this point in the history
  • Loading branch information
realthunder authored and wwmayer committed Sep 10, 2019
1 parent 56d8f22 commit 95dfd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Base/Console.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 95dfd5a

Please sign in to comment.