From 4eebabf714c18e9dafe69076a6f5ede4a7207f90 Mon Sep 17 00:00:00 2001
From: Carl Philipp Klemm <philipp@uvos.xyz>
Date: Fri, 23 Feb 2024 14:02:11 +0100
Subject: [PATCH] test: fix output formating

---
 test.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test.cpp b/test.cpp
index 83995ec..6018341 100644
--- a/test.cpp
+++ b/test.cpp
@@ -195,8 +195,8 @@ int main(int argc, char** argv)
 					bool enabled = coinCells[coincellId]->getEnabled();
 
 					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")
-- 
GitLab