From 48290d3d6187ad31861c7e9d202f545a7d2f7690 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Tue, 14 Apr 2020 18:32:43 +0200 Subject: [PATCH] Review logging for blocking.c --- src/xmpp/blocking.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xmpp/blocking.c b/src/xmpp/blocking.c index c8fda47d..302471a6 100644 --- a/src/xmpp/blocking.c +++ b/src/xmpp/blocking.c @@ -273,7 +273,7 @@ _block_remove_result_handler(xmpp_stanza_t *const stanza, void *const userdata) static int _blocklist_result_handler(xmpp_stanza_t *const stanza, void *const userdata) { - log_info("Blocked list result handler fired."); + log_debug("Blocked list result handler fired."); const char *type = xmpp_stanza_get_type(stanza); if (g_strcmp0(type, "result") != 0) { @@ -294,7 +294,7 @@ _blocklist_result_handler(xmpp_stanza_t *const stanza, void *const userdata) xmpp_stanza_t *items = xmpp_stanza_get_children(blocklist); if (!items) { - log_info("No blocked users."); + log_debug("No blocked users."); return 0; }