Skip to content
Snippets Groups Projects
Commit 931806ea authored by Eric Cano's avatar Eric Cano
Browse files

Enabled string logger printout to better understand intermittent failures in...

Enabled string logger printout to better understand intermittent failures in continuous integration.
parent 8760b3b2
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment