From 54fd8065e47844e95f38472ea57be00449978984 Mon Sep 17 00:00:00 2001 From: JacquesRabbit Date: Fri, 2 Dec 2022 03:40:07 +0000 Subject: [PATCH] Basically just a typo I noticed all debug messages but one are sent to `DBG_OUTPUT_PORT`, which is defined as `Serial`. The outlier directly references `Serial` instead of `DBG_OUTPUT_PORT`. This is a pedantic correction if anything, and should have no effect on the operation of the sketch. --- ESPKey.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESPKey.ino b/ESPKey.ino index 0be928b..058f0b0 100644 --- a/ESPKey.ino +++ b/ESPKey.ino @@ -562,7 +562,7 @@ void setup() { DBG_OUTPUT_PORT.println("Hostname: " + dhcp_hostname); if (!SPIFFS.begin()) { - Serial.println(F("Failed to mount file system")); + DBG_OUTPUT_PORT.println(F("Failed to mount file system")); return; } else { Dir dir = SPIFFS.openDir("/");