Commit be75ba68 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

i40e: another logger fix

parent d7bf26a7
...@@ -16,7 +16,7 @@ logger &logger::operator<<(char c) ...@@ -16,7 +16,7 @@ logger &logger::operator<<(char c)
if (c == endl) { if (c == endl) {
std::cerr << runner->time_ps() << " " << label << ": " << ss.str() << std::cerr << runner->time_ps() << " " << label << ": " << ss.str() <<
std::endl; std::endl;
ss.clear(); ss.str(std::string());
} else { } else {
ss << c; ss << c;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment