diff options
author | Michael Vetter <jubalh@iodoru.org> | 2020-04-14 18:32:43 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2020-04-14 18:32:43 +0200 |
commit | 48290d3d6187ad31861c7e9d202f545a7d2f7690 (patch) | |
tree | 6df958fc4382d78043cce81c6f0d511703827b38 /src/xmpp | |
parent | b73606cc60d6e073e2498d05aa09b27f3bb39c41 (diff) | |
download | profani-tty-48290d3d6187ad31861c7e9d202f545a7d2f7690.tar.gz |
Review logging for blocking.c
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/blocking.c | 4 |
1 files 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; } |