Browse Source

Print log messages to stdout on non-Windows systems

Marc Legendre 9 years ago
parent
commit
646f096344
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/BansheeUtility/Source/BsDebug.cpp

+ 2 - 2
Source/BansheeUtility/Source/BsDebug.cpp

@@ -22,7 +22,7 @@ void logToIDEConsole(const BansheeEngine::String& message)
 #else
 void logToIDEConsole(const BansheeEngine::String& message)
 {
-	// Do nothing
+	std::cout << message << std::endl;
 }
 #endif
 
@@ -264,4 +264,4 @@ table td
 		static Debug debug;
 		return debug;
 	}
-}
+}