This commit is contained in:
Patrick Haßel 2025-09-03 10:03:48 +02:00
parent 7700e9bd86
commit 951d15ac81
2 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ void configSetup() {
}
#endif
Serial.println("Filesystem-content:");
listDir("/", "");
listDir("/", " ");
}
File configOpen(const String &path, const bool write) {
@ -75,7 +75,7 @@ void doLog(const String &path, const String &value, const bool isPassword, const
return;
}
Serial.printf(
"[CONFIG] %-20s = %-30s [%s]\n",
"[CONFIG] %-25s = %-30s [%s]\n",
path.c_str(),
isPassword ? "*" : value.c_str(),
type == CONFIG_LOG_FALLBACK ? "fallback" : type == CONFIG_LOG_READ ? "READ" : type == CONFIG_LOG_UNCHANGED ? "UNCHANGED" : type == CONFIG_LOG_WRITE ? "WRITE" : ""

View File

@ -148,7 +148,7 @@ void httpSetup() {
server.begin();
Serial.println("HTTP server started");
Serial.println("[HTTP] Server started");
httpRunning = true;
}
@ -160,6 +160,6 @@ void httpStop() {
if (httpRunning) {
httpRunning = false;
server.stop();
Serial.println("HTTP server stopped");
Serial.println("[HTTP] Server stopped");
}
}