Module: sip-router Branch: 4.0 Commit: f1845ecb7cc02c598ff90a9531a3cc2da489f20a URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f1845ecb...
Author: Torrey Searle tsearle@gmail.com Committer: Torrey Searle tsearle@gmail.com Date: Mon Mar 3 14:54:10 2014 +0100
app_perl: update constants for debug levels (cherry picked from commit 6513ee05dd20253c0f555b18081f0eceb4baf7aa)
---
modules/app_perl/lib/perl/Kamailio/Constants.pm | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/app_perl/lib/perl/Kamailio/Constants.pm b/modules/app_perl/lib/perl/Kamailio/Constants.pm index bb8743d..401291a 100644 --- a/modules/app_perl/lib/perl/Kamailio/Constants.pm +++ b/modules/app_perl/lib/perl/Kamailio/Constants.pm @@ -168,10 +168,10 @@ BEGIN { const( L_ALERT => -3); const( L_CRIT => -2); const( L_ERR => -1); - const( L_WARN => 1); - const( L_NOTICE => 2); - const( L_INFO => 3); - const( L_DBG => 4); + const( L_WARN => 0); + const( L_NOTICE => 1); + const( L_INFO => 2); + const( L_DBG => 3);
#####################