about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-04-14 18:32:43 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-04-14 18:32:43 +0200
commit48290d3d6187ad31861c7e9d202f545a7d2f7690 (patch)
tree6df958fc4382d78043cce81c6f0d511703827b38 /src/xmpp
parentb73606cc60d6e073e2498d05aa09b27f3bb39c41 (diff)
downloadprofani-tty-48290d3d6187ad31861c7e9d202f545a7d2f7690.tar.gz
Review logging for blocking.c
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/blocking.c4
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;
     }