]> mj.ucw.cz Git - home-hw.git/commitdiff
SSR host: Silence, please...
authorMartin Mares <mj@ucw.cz>
Fri, 17 Aug 2018 07:39:24 +0000 (09:39 +0200)
committerMartin Mares <mj@ucw.cz>
Fri, 17 Aug 2018 07:39:24 +0000 (09:39 +0200)
ssr/host/burrow-ssrd.c

index 1b3c4ffde3923ec5ee998fb13246ac5b213fc804..86a3156c3364bf5a5316f3a27a37a1435101f450 100644 (file)
@@ -138,7 +138,7 @@ static void mqtt_msg_callback(struct mosquitto *mosq UNUSED, void *obj UNUSED, c
                        msg(L_ERROR, "Received invalid fan setting %s: %s", val, err);
                        x = 0;
                }
-               msg(L_INFO, "Setting fan level to %u", x);
+               msg(L_DEBUG, "Setting fan level to %u", x);
                switch (x) {
                        case 0:
                                set_relays(~7U, 0);
@@ -160,7 +160,7 @@ static void mqtt_msg_callback(struct mosquitto *mosq UNUSED, void *obj UNUSED, c
                        msg(L_ERROR, "Received invalid circulation setting %s: %s", val, err);
                        x = 0;
                }
-               msg(L_INFO, "Setting circulation to %u", x);
+               msg(L_DEBUG, "Setting circulation to %u", x);
                set_relays(~8U, (x ? 8 : 0));
        }
 }