From c834c5e43ed6f34ec10f9f8057be8bb301c3882b Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 11 Jan 2024 21:37:48 +0100 Subject: [PATCH] debug formatting --- src/web/WebCustomEntityService.cpp | 2 +- src/web/WebCustomizationService.cpp | 2 +- src/web/WebSchedulerService.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/web/WebCustomEntityService.cpp b/src/web/WebCustomEntityService.cpp index 065ceb4f3..9f329474b 100644 --- a/src/web/WebCustomEntityService.cpp +++ b/src/web/WebCustomEntityService.cpp @@ -73,7 +73,7 @@ StateUpdateResult WebCustomEntity::update(JsonObject root, WebCustomEntity & web JsonDocument doc; deserializeJson(doc, json); root = doc.as(); - Serial.println(COLOR_BRIGHT_MAGENTA); + Serial.print(COLOR_BRIGHT_MAGENTA); Serial.print(" Using fake custom entity file: "); serializeJson(root, Serial); Serial.println(COLOR_RESET); diff --git a/src/web/WebCustomizationService.cpp b/src/web/WebCustomizationService.cpp index 2c39b2689..3d76626e8 100644 --- a/src/web/WebCustomizationService.cpp +++ b/src/web/WebCustomizationService.cpp @@ -103,7 +103,7 @@ StateUpdateResult WebCustomization::update(JsonObject root, WebCustomization & c JsonDocument doc; deserializeJson(doc, json); root = doc.as(); - Serial.println(COLOR_BRIGHT_MAGENTA); + Serial.print(COLOR_BRIGHT_MAGENTA); Serial.print(" Using fake customization file: "); serializeJson(root, Serial); Serial.println(COLOR_RESET); diff --git a/src/web/WebSchedulerService.cpp b/src/web/WebSchedulerService.cpp index b70612960..a2a2a40e1 100644 --- a/src/web/WebSchedulerService.cpp +++ b/src/web/WebSchedulerService.cpp @@ -62,7 +62,7 @@ StateUpdateResult WebScheduler::update(JsonObject root, WebScheduler & webSchedu JsonDocument doc; deserializeJson(doc, json); root = doc.as(); - Serial.println(COLOR_BRIGHT_MAGENTA); + Serial.print(COLOR_BRIGHT_MAGENTA); Serial.print(" Using fake scheduler file: "); serializeJson(root, Serial); Serial.println(COLOR_RESET);