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

@ -75,7 +75,7 @@ void doLog(const String &path, const String &value, const bool isPassword, const
return; return;
} }
Serial.printf( Serial.printf(
"[CONFIG] %-20s = %-30s [%s]\n", "[CONFIG] %-25s = %-30s [%s]\n",
path.c_str(), path.c_str(),
isPassword ? "*" : value.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" : "" 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(); server.begin();
Serial.println("HTTP server started"); Serial.println("[HTTP] Server started");
httpRunning = true; httpRunning = true;
} }
@ -160,6 +160,6 @@ void httpStop() {
if (httpRunning) { if (httpRunning) {
httpRunning = false; httpRunning = false;
server.stop(); server.stop();
Serial.println("HTTP server stopped"); Serial.println("[HTTP] Server stopped");
} }
} }