Module: sip-router
Branch: master
Commit: 6513ee05dd20253c0f555b18081f0eceb4baf7aa
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=6513ee0…
Author: Torrey Searle <tsearle(a)gmail.com>
Committer: Torrey Searle <tsearle(a)gmail.com>
Date: Mon Mar 3 14:54:10 2014 +0100
app_perl: update constants for debug levels
---
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);
#####################