From: Martin Mares Date: Fri, 17 Aug 2018 07:39:24 +0000 (+0200) Subject: SSR host: Silence, please... X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=22ac663d867d720a23d43a80e42a5c8d4167c6cb;p=home-hw.git SSR host: Silence, please... --- 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)); } }