fix: add logging for healthy spoolman instance check

This commit is contained in:
2025-08-28 10:45:16 +02:00
parent c17ab2c434
commit 99babe2b4a

View File

@@ -700,6 +700,8 @@ bool checkSpoolmanInstance() {
oledShowTopRow(); oledShowTopRow();
spoolmanConnected = true; spoolmanConnected = true;
returnValue = strcmp(status, "healthy") == 0; returnValue = strcmp(status, "healthy") == 0;
Serial.print("Spoolman instance is healthy: ");
Serial.println(returnValue);
}else{ }else{
spoolmanConnected = false; spoolmanConnected = false;
} }