[sr-dev] git:master:29ebde9c: dispatcher: removed module name from log message

Daniel-Constantin Mierla miconda at gmail.com
Thu Jan 13 10:39:01 CET 2022


Module: kamailio
Branch: master
Commit: 29ebde9cfe746c1dd9083a5fc4b26a32c39ca0a4
URL: https://github.com/kamailio/kamailio/commit/29ebde9cfe746c1dd9083a5fc4b26a32c39ca0a4

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2022-01-13T10:37:46+01:00

dispatcher: removed module name from log message

- updates to debug messages

---

Modified: src/modules/dispatcher/dispatcher.c

---

Diff:  https://github.com/kamailio/kamailio/commit/29ebde9cfe746c1dd9083a5fc4b26a32c39ca0a4.diff
Patch: https://github.com/kamailio/kamailio/commit/29ebde9cfe746c1dd9083a5fc4b26a32c39ca0a4.patch

---

diff --git a/src/modules/dispatcher/dispatcher.c b/src/modules/dispatcher/dispatcher.c
index fbf65d33fe..216a04f297 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;




More information about the sr-dev mailing list