From 22ac663d867d720a23d43a80e42a5c8d4167c6cb Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 17 Aug 2018 09:39:24 +0200 Subject: [PATCH] SSR host: Silence, please... --- ssr/host/burrow-ssrd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } } -- 2.39.2