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

i40e: formatting fix for logger

parent c2ddff50
......@@ -9,6 +9,7 @@ extern nicbm::Runner *runner;
logger::logger(const std::string &label_)
: label(label_)
{
ss << std::hex;
}
logger &logger::operator<<(char c)
......@@ -17,6 +18,7 @@ logger &logger::operator<<(char c)
std::cerr << runner->time_ps() << " " << label << ": " << ss.str() <<
std::endl;
ss.str(std::string());
ss << std::hex;
} else {
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