diff --git a/inc/Services/DummyService.hpp b/inc/Services/DummyService.hpp
index 039828ffa340614c3a2626aad02e40429a12dcbc..0463ff75aed7710f10248a9970c536d57fd77b83 100644
--- a/inc/Services/DummyService.hpp
+++ b/inc/Services/DummyService.hpp
@@ -13,6 +13,8 @@
  * Per the ECSS-E-ST-70-41C standard, p. 27-28, custom Services and Messages should start above 127.
  */
 class DummyService : public Service {
+private:
+	etl::string<1> termination = "\n";
 
 public:
 	inline static const uint8_t ServiceType = 128;
@@ -31,6 +33,7 @@ public:
 	void logAsECSSMessage(const etl::string<LOGGER_MAX_MESSAGE_SIZE>& data) {
 		Message log = createTM(MessageType::LogString);
 		log.appendString(data);
+		log.appendString(termination);
 		storeMessage(log);
 	}
 };