Module: sip-router
Branch: master
Commit: 3f367560725eaf00f3bc8d8f0d3d047db3c6997a
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=3f36756…
Author: Carsten Bock <lists(a)bock.info>
Committer: Carsten Bock <lists(a)bock.info>
Date: Wed Sep 29 18:12:22 2010 +0200
- be less verbose
---
modules_k/dispatcher/dispatcher.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules_k/dispatcher/dispatcher.c b/modules_k/dispatcher/dispatcher.c
index ef4bb9a..39258d7 100644
--- a/modules_k/dispatcher/dispatcher.c
+++ b/modules_k/dispatcher/dispatcher.c
@@ -782,7 +782,7 @@ static int ds_parse_reply_codes() {
list_size += 100;
}
}
- LM_INFO("Should be %d Destinations.\n", list_size);
+ LM_DBG("Should be %d Destinations.\n", list_size);
if (list_size > 0) {
/* Allocate Memory for the new list: */
@@ -841,7 +841,7 @@ static int ds_parse_reply_codes() {
/* Print the list as INFO: */
for (i =0; i< *ds_ping_reply_codes_cnt; i++)
{
- LM_INFO("Dispatcher: Now accepting Reply-Code %d (%d/%d) as valid\n",
+ LM_DBG("Dispatcher: Now accepting Reply-Code %d (%d/%d) as valid\n",
(*ds_ping_reply_codes)[i], (i+1), *ds_ping_reply_codes_cnt);
}
return 0;