X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ssr%2Fhost%2Fburrow-ssrd.c;h=86a3156c3364bf5a5316f3a27a37a1435101f450;hb=832142c0afc865e125a978f590ba5f5dcce17219;hp=1b3c4ffde3923ec5ee998fb13246ac5b213fc804;hpb=16fea8acf4fae8f7239f810e392e924725dbfdf5;p=home-hw.git diff --git a/ssr/host/burrow-ssrd.c b/ssr/host/burrow-ssrd.c index 1b3c4ff..86a3156 100644 --- a/ssr/host/burrow-ssrd.c +++ b/ssr/host/burrow-ssrd.c @@ -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)); } }