diff --git a/RetroFE/Source/Utility/Log.cpp b/RetroFE/Source/Utility/Log.cpp index e772277..327b4b8 100644 --- a/RetroFE/Source/Utility/Log.cpp +++ b/RetroFE/Source/Utility/Log.cpp @@ -74,4 +74,5 @@ void Logger::Write(Zone zone, std::string component, std::string message) std::stringstream ss; ss << "[" << timeStr << "] [" << zoneStr << "] [" << component << "] " << message << std::endl; std::cout << ss.str(); + std::cout.flush(); }