diff --git a/src/modules/dispatcher/dispatcher.c b/src/modules/dispatcher/dispatcher.c index fbf65d33fe1..216a04f2974 100644 --- a/src/modules/dispatcher/dispatcher.c +++ b/src/modules/dispatcher/dispatcher.c @@ -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: */ @@ -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;