From 8fbd63dea997dc086678652313ca0b1d02fa13d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Mon, 22 Jan 2018 00:40:00 +0100 Subject: [PATCH] Small fix in a debug message in OTA module --- code/espurna/ota.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/espurna/ota.ino b/code/espurna/ota.ino index ffb38148..17eb518d 100644 --- a/code/espurna/ota.ino +++ b/code/espurna/ota.ino @@ -37,7 +37,8 @@ void otaSetup() { }); ArduinoOTA.onEnd([]() { - DEBUG_MSG_P(PSTR("\n[OTA] End\n")); + DEBUG_MSG_P(PSTR("\n")); + DEBUG_MSG_P(PSTR("[OTA] End\n")); #if WEB_SUPPORT wsSend_P(PSTR("{\"action\": \"reload\"}")); #endif