Skip to content

Commit

Permalink
kazoo: add msgid to hash logging
Browse files Browse the repository at this point in the history
  • Loading branch information
lazedo committed Jan 18, 2017
1 parent a0b4e58 commit 0923baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/kazoo/kz_hash.c
Expand Up @@ -181,7 +181,7 @@ kz_amqp_cmd_ptr kz_cmd_retrieve(str* message_id)
p = kz_search_cmd_table(message_id, hash_code);
if(p== NULL)
{
LM_DBG("command pointer hash entry not found\n");
LM_DBG("command pointer hash entry not found - %s\n", message_id->s);
lock_release(&kz_cmd_htable[hash_code].lock);
return NULL;
}
Expand All @@ -195,7 +195,7 @@ kz_amqp_cmd_ptr kz_cmd_retrieve(str* message_id)
}
if(prev_p->next== NULL)
{
LM_ERR("command pointer not found\n");
LM_DBG("command pointer hash entry not found - %s\n", message_id->s);
lock_release(&kz_cmd_htable[hash_code].lock);
return NULL;
}
Expand Down

0 comments on commit 0923baa

Please sign in to comment.