Skip to content

Commit

Permalink
DMQ: Add debug line when creating list and adding first notification …
Browse files Browse the repository at this point in the history
…address
  • Loading branch information
oej committed Dec 21, 2022
1 parent 5c90e6e commit c181362
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/modules/dmq/dmq.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ static int dmq_add_notification_address(modparam_t type, void * val)
dmq_tmp_list = dmq_notification_address_list;
dmq_tmp_list->s = tmp_str;
dmq_tmp_list->next = NULL;
LM_DBG("Created list and added new notification address to the list %.*s\n",
dmq_tmp_list->s.len, dmq_tmp_list->s.s);
} else {
dmq_tmp_list = append_str_list(tmp_str.s, tmp_str.len, &dmq_tmp_list, &total_list);
if (dmq_tmp_list == NULL) {
Expand Down

0 comments on commit c181362

Please sign in to comment.