From 07aad4a534521c32de752a1dde102cac6911bc21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 21 Jul 2019 19:17:10 +0200 Subject: [PATCH] csi: change flash log message from warning to debug --- csi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csi.c b/csi.c index 4d40686d..1899e02c 100644 --- a/csi.c +++ b/csi.c @@ -578,7 +578,7 @@ csi_dispatch(struct terminal *term, uint8_t final) case 1001: { /* Our own private - flash */ unsigned duration_ms = vt_param_get(term, 1, 100); - LOG_WARN("FLASH for %ums", duration_ms); + LOG_DBG("FLASH for %ums", duration_ms); struct itimerspec alarm = { .it_value = {.tv_sec = 0, .tv_nsec = duration_ms * 1000000},