about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorStefan <stefan@devlug.de>2021-03-06 19:55:22 +0100
committerMaximilian Wuttke <mwuttke97@posteo.de>2021-03-09 17:47:22 +0100
commit637c2c2d6202b6b6caaff65942be293e234fd9de (patch)
tree9114e9809b9ef4eb17153205158b4ec46c81d5f9 /src
parentfb4aec752f67788729a46d5f814627ba9309f3a9 (diff)
downloadprofani-tty-637c2c2d6202b6b6caaff65942be293e234fd9de.tar.gz
Logging [CONNECTION]
Diffstat (limited to 'src')
-rw-r--r--src/xmpp/connection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index 0bcab020..d34f9a4f 100644
--- a/src/xmpp/connection.c
+++ b/src/xmpp/connection.c
@@ -454,6 +454,7 @@ connection_get_barejid(void)
 void
 connection_features_received(const char* const jid)
 {
+    log_info("[CONNECTION] connection_features_received %s", jid);
     if (g_hash_table_remove(conn.requested_features, jid) && g_hash_table_size(conn.requested_features) == 0) {
         sv_ev_connection_features_received();
     }