diff options
author | Stefan <stefan@devlug.de> | 2021-03-06 19:55:22 +0100 |
---|---|---|
committer | Maximilian Wuttke <mwuttke97@posteo.de> | 2021-03-09 17:47:22 +0100 |
commit | 637c2c2d6202b6b6caaff65942be293e234fd9de (patch) | |
tree | 9114e9809b9ef4eb17153205158b4ec46c81d5f9 | |
parent | fb4aec752f67788729a46d5f814627ba9309f3a9 (diff) | |
download | profani-tty-637c2c2d6202b6b6caaff65942be293e234fd9de.tar.gz |
Logging [CONNECTION]
-rw-r--r-- | src/xmpp/connection.c | 1 |
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(); } |