From 931806ea9db1b59eb6b3b97684a3b1a45d4ecc56 Mon Sep 17 00:00:00 2001 From: Eric Cano <Eric.Cano@cern.ch> Date: Wed, 12 Oct 2016 01:11:13 +0200 Subject: [PATCH] Enabled string logger printout to better understand intermittent failures in continuous integration. --- common/log/StringLogger.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/log/StringLogger.cpp b/common/log/StringLogger.cpp index d7d46ded71..69ea5c1fad 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 -- GitLab