Browse Source

Tests should always debug log

RevoluPowered 5 years ago
parent
commit
d7d79db0ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/unit/Main.cpp

+ 1 - 1
test/unit/Main.cpp

@@ -16,7 +16,7 @@ int main(int argc, char* argv[])
 
 
     // create a logger from both CPP
     // create a logger from both CPP
     Assimp::DefaultLogger::create("AssimpLog_Cpp.txt",Assimp::Logger::VERBOSE,
     Assimp::DefaultLogger::create("AssimpLog_Cpp.txt",Assimp::Logger::VERBOSE,
-        aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE);
+        aiDefaultLogStream_STDOUT | aiDefaultLogStream_DEBUGGER | aiDefaultLogStream_FILE);
 
 
     // .. and C. They should smoothly work together
     // .. and C. They should smoothly work together
     aiEnableVerboseLogging(AI_TRUE);
     aiEnableVerboseLogging(AI_TRUE);