diff --git a/src/util/logging.cpp b/src/util/logging.cpp index c682cd80d30..87b0fa5e853 100644 --- a/src/util/logging.cpp +++ b/src/util/logging.cpp @@ -256,10 +256,10 @@ inline void writeToLog( const bool flush = flags & WriteFlag::Flush; if (flags & WriteFlag::StdErr) { - writeToStdErr(type, context, message, threadName, flush); + // writeToStdErr(type, context, message, threadName, flush); } if (flags & WriteFlag::File) { - writeToFile(type, message, threadName, flush); + // writeToFile(type, message, threadName, flush); } }