From d650c921cef09b6ed2640c93eee7bc56f68154c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Ha=C3=9Fel?= Date: Wed, 10 Apr 2024 16:04:09 +0200 Subject: [PATCH] BOOT DELAY log fix --- lib/patrix/wifi.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/patrix/wifi.cpp b/lib/patrix/wifi.cpp index da33a51..1e93fda 100644 --- a/lib/patrix/wifi.cpp +++ b/lib/patrix/wifi.cpp @@ -109,20 +109,20 @@ void bootDelay() { #if !BOOT_DELAY return; #endif - info("BOOT DELAY", "BOOT DELAY: Waiting for WiFi..."); + info("BOOT DELAY: Waiting for WiFi..."); while ((uint32_t) WiFi.localIP() == 0) { consoleLoop(); wifiLoop(); } - info("BOOT DELAY", "BOOT DELAY: WiFi connected!"); - info("BOOT DELAY", "BOOT DELAY: Waiting 10 seconds..."); + info("BOOT DELAY: WiFi connected!"); + info("BOOT DELAY: Waiting 10 seconds..."); unsigned long bootDelayBegin = millis(); while (millis() - bootDelayBegin < BOOT_DELAY_MS) { consoleLoop(); wifiLoop(); } - info("BOOT DELAY", "BOOT DELAY: Complete!"); - info("BOOT DELAY", "BOOT DELAY: Resuming normal boot!"); + info("BOOT DELAY: Complete!"); + info("BOOT DELAY: Resuming normal boot!"); } void wifiLoop() {