Skip to content

Commit

Permalink
dispatcher: removed module name from log message
Browse files Browse the repository at this point in the history
- updates to debug messages
  • Loading branch information
miconda committed Jan 13, 2022
1 parent 3a11426 commit 29ebde9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/dispatcher/dispatcher.c
Expand Up @@ -1151,7 +1151,7 @@ static int ds_parse_reply_codes()
list_size += 100;
}
}
LM_DBG("Should be %d Destinations.\n", list_size);
LM_DBG("expecting %d reply codes\n", list_size);

if(list_size > 0) {
/* Allocate Memory for the new list: */
Expand Down Expand Up @@ -1206,7 +1206,7 @@ static int ds_parse_reply_codes()
}
/* Print the list as INFO: */
for(i = 0; i < *ds_ping_reply_codes_cnt; i++) {
LM_DBG("Dispatcher: Now accepting Reply-Code %d (%d/%d) as valid\n",
LM_DBG("now accepting reply code %d (%d/%d) as valid\n",
(*ds_ping_reply_codes)[i], (i + 1), *ds_ping_reply_codes_cnt);
}
return 0;
Expand Down

0 comments on commit 29ebde9

Please sign in to comment.