diff options
-rw-r--r-- | src/Log.cpp | 3 | ||||
-rw-r--r-- | src/server/PreProcessor.cpp | 1 |
2 files changed, 0 insertions, 4 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); } } diff --git a/src/server/PreProcessor.cpp b/src/server/PreProcessor.cpp index 1223aad4..6c514f00 100644 --- a/src/server/PreProcessor.cpp +++ b/src/server/PreProcessor.cpp @@ -15,7 +15,6 @@ */ #include <stdexcept> -#include <iostream> #include "Event.hpp" #include "PostProcessor.hpp" |