diff --git a/common/log/StringLogger.cpp b/common/log/StringLogger.cpp index d7d46ded71d0bf5be248f9745419db5212ac9cbb..69ea5c1fad1d2b6517b0a284f3c438980eb91e8b 100644 --- a/common/log/StringLogger.cpp +++ b/common/log/StringLogger.cpp @@ -53,7 +53,8 @@ void StringLogger::reducedSyslog(const std::string & msg) { m_log << msg.substr(0, m_maxMsgLen) << std::endl; // Uncomment this to get the logs printed to stdout during unit tests. - // printf (msg.substr(0, m_maxMsgLen).c_str()); + // Temporarily enabled to better understand intermittent failures in continuous integration. + printf (msg.substr(0, m_maxMsgLen).c_str()); } } // namespace log