1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Logging [CONNECTION]

This commit is contained in:
Stefan 2021-03-06 19:55:22 +01:00 committed by Maximilian Wuttke
parent fb4aec752f
commit 637c2c2d62

View File

@ -454,6 +454,7 @@ connection_get_barejid(void)
void void
connection_features_received(const char* const jid) 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) { if (g_hash_table_remove(conn.requested_features, jid) && g_hash_table_size(conn.requested_features) == 0) {
sv_ev_connection_features_received(); sv_ev_connection_features_received();
} }