diff options
author | Michael Vetter <jubalh@iodoru.org> | 2021-03-25 16:24:07 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2021-03-25 16:24:07 +0100 |
commit | fb81b80499a5276fac47cc48a4e39750e1b90514 (patch) | |
tree | 1a7d7dc88f10a89b07158b4c6e783468b3a965ef | |
parent | 31a78e26294c3a3ab135c7da775664d7dd95c269 (diff) | |
download | profani-tty-fb81b80499a5276fac47cc48a4e39750e1b90514.tar.gz |
ox: improve error log in _ox_metadata_result
-rw-r--r-- | src/xmpp/ox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/ox.c b/src/xmpp/ox.c index 176ddabe..8661eb5b 100644 --- a/src/xmpp/ox.c +++ b/src/xmpp/ox.c @@ -265,7 +265,7 @@ _ox_metadata_result(xmpp_conn_t* const conn, xmpp_stanza_t* const stanza, void* log_debug("[OX] Processing result %s's metadata.", (char*)userdata); if (g_strcmp0(xmpp_stanza_get_type(stanza), "result") != 0) { - cons_show("[OX] Error:"); + log_debug("[OX] Error: No result"); return FALSE; } // pubsub |