From 1a4efcd38d597baba50280d7e3c2b94e02096d52 Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Thu, 9 Nov 2017 16:13:00 +0100 Subject: [PATCH] TSCH: when not sending KA, issue `LOG_ERR` rather than `LOG_INFO` --- os/net/mac/tsch/tsch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/net/mac/tsch/tsch.c b/os/net/mac/tsch/tsch.c index 56872adb3..017f6542c 100644 --- a/os/net/mac/tsch/tsch.c +++ b/os/net/mac/tsch/tsch.c @@ -313,7 +313,7 @@ keepalive_send(void *ptr) LOG_INFO_LLADDR(&n->addr); LOG_INFO_("\n"); } else { - LOG_INFO("no timesource - KA not sent\n"); + LOG_ERR("no timesource - KA not sent\n"); } } }