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);