Module: sip-router Branch: master Commit: 4401fc5a7dde019578a79c7abf01d3373c92c7b8 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4401fc5a...
Author: Juha Heinanen jh@tutpro.com Committer: Juha Heinanen jh@tutpro.com Date: Tue Apr 3 15:05:26 2012 +0300
modules_k/domain: removed/downgraded INFO syslog messages
---
modules_k/domain/domain.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/modules_k/domain/domain.c b/modules_k/domain/domain.c index 82d4b41..b13ff7f 100644 --- a/modules_k/domain/domain.c +++ b/modules_k/domain/domain.c @@ -310,11 +310,9 @@ int reload_tables ( void )
/* Choose new hash table and free its old contents */ if (*hash_table == hash_table_1) { - LM_INFO("new hash table is 2\n"); hash_table_free(hash_table_2); new_hash_table = hash_table_2; } else { - LM_INFO("new hash table is 1\n"); hash_table_free(hash_table_1); new_hash_table = hash_table_1; } @@ -464,7 +462,7 @@ int reload_tables ( void ) } }
- LM_INFO("inserting <did/domain> = <%s/%s> into hash table\n", + LM_DBG("inserting <did/domain> = <%s/%s> into hash table\n", did.s, domain.s);
if (hash_table_install(new_hash_table, &did, &domain) == -1) {