chore: clean up W5500 debug logs

- Reduce verbose logs in main loop
- Remove detailed HTTP traces on shade commands
- Keep useful messages for W5500 initialization and IP status
This commit is contained in:
Anthony Marchand 2026-01-29 00:18:09 +01:00
parent 0e0a482afb
commit 4df4fc87d2
3 changed files with 94 additions and 78 deletions

View file

@ -383,8 +383,6 @@ void Web::handleShadeCommand(WebServer& server) {
else server.send(500, _encoding_json, F("{\"status\":\"ERROR\",\"desc\":\"No shade object supplied.\"}"));
SomfyShade* shade = somfy.getShadeById(shadeId);
if (shade) {
Serial.print("Received:");
Serial.println(server.arg("plain"));
// Send the command to the shade.
if (target <= 100)
shade->moveToTarget(shade->transformPosition(target));