Explorar el Código

Print log messages to stdout on non-Windows systems

Marc Legendre hace 9 años
padre
commit
646f096344
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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
 #else
 void logToIDEConsole(const BansheeEngine::String& message)
 void logToIDEConsole(const BansheeEngine::String& message)
 {
 {
-	// Do nothing
+	std::cout << message << std::endl;
 }
 }
 #endif
 #endif
 
 
@@ -264,4 +264,4 @@ table td
 		static Debug debug;
 		static Debug debug;
 		return debug;
 		return debug;
 	}
 	}
-}
+}