From f74364979df99bb5c2b4e5ec1d3440dd21e28e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 26 Jan 2020 15:28:30 +0100 Subject: [PATCH] dcs: bsu/esu: convert warning log to debug log --- dcs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dcs.c b/dcs.c index 0b535113..b589e96c 100644 --- a/dcs.c +++ b/dcs.c @@ -10,7 +10,7 @@ bsu(struct terminal *term) { /* https://gitlab.com/gnachman/iterm2/-/wikis/synchronized-updates-spec */ - LOG_WARN("untested: BSU - Begin Synchronized Update (params: %.*s)", + LOG_DBG("untested: BSU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data); term_enable_app_sync_updates(term); @@ -21,7 +21,7 @@ esu(struct terminal *term) { /* https://gitlab.com/gnachman/iterm2/-/wikis/synchronized-updates-spec */ - LOG_WARN("untested: ESU - Begin Synchronized Update (params: %.*s)", + LOG_DBG("untested: ESU - Begin Synchronized Update (params: %.*s)", (int)term->vt.dcs.idx, term->vt.dcs.data); term_disable_app_sync_updates(term);