diff options
Diffstat (limited to 'src/Log.cpp')
-rw-r--r-- | src/Log.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Log.cpp b/src/Log.cpp index ccfc2e7c..c72f3dbb 100644 --- a/src/Log.cpp +++ b/src/Log.cpp @@ -44,7 +44,6 @@ Log::error(const std::string& msg) } else { std::cerr << ANSI_RED << msg << ANSI_RESET; if (_flush) { - std::cerr << "flush!\n"; std::flush(std::cerr); } } @@ -58,7 +57,6 @@ Log::warn(const std::string& msg) } else { std::cerr << ANSI_YELLOW << msg << ANSI_RESET; if (_flush) { - std::cerr << "flush!\n"; std::flush(std::cerr); } } @@ -72,7 +70,6 @@ Log::info(const std::string& msg) } else { std::cout << msg; if (_flush) { - std::cerr << "flush!\n"; std::flush(std::cout); } } |