Skip to content
Snippets Groups Projects
Commit 4eebabf7 authored by Carl Philipp Klemm's avatar Carl Philipp Klemm
Browse files

test: fix output formating

parent bc543f19
No related branches found
No related tags found
No related merge requests found
...@@ -195,8 +195,8 @@ int main(int argc, char** argv) ...@@ -195,8 +195,8 @@ int main(int argc, char** argv)
bool enabled = coinCells[coincellId]->getEnabled(); bool enabled = coinCells[coincellId]->getEnabled();
Log(Log::ERROR, true, false)<<"Cell "<<coincellId<<':'; Log(Log::ERROR, true, false)<<"Cell "<<coincellId<<':';
Log(Log::ERROR, true, false)<<"\ttemperature: "<<temperature<<"\n\tsetpoint: "<<setpoint<<"\t\nenabled: "<<enabled; Log(Log::ERROR, true, false)<<"\ttemperature: "<<temperature<<"\n\tsetpoint: "<<setpoint;
Log(Log::ERROR, true, false)<<"\tenabled: "<<(enabled ? "true" : "false");
} }
} }
else if(tokens[0] == "clear") else if(tokens[0] == "clear")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment