Module: sip-router Branch: master Commit: 92fa1ac28b4991cd83338d1f99e898dfe1d8742f URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=92fa1ac2...
Author: Alex Hermann alex@speakup.nl Committer: Alex Hermann alex@speakup.nl Date: Mon Nov 10 12:24:11 2014 +0100
perl: Sync log levels with kamailio core
---
modules/app_perl/lib/perl/Kamailio/Constants.pm | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/modules/app_perl/lib/perl/Kamailio/Constants.pm b/modules/app_perl/lib/perl/Kamailio/Constants.pm index fc8b375..087e6fd 100644 --- a/modules/app_perl/lib/perl/Kamailio/Constants.pm +++ b/modules/app_perl/lib/perl/Kamailio/Constants.pm @@ -165,7 +165,11 @@ BEGIN { ##################### # non-enum constants from dprint.h: # Logging levels - const( L_ALERT => -3); + const( L_NPRL => -6); + const( L_MIN => -5); + const( L_ALERT => -5); + const( L_BUG => -4); + const( L_CRIT2 => -3); const( L_CRIT => -2); const( L_ERR => -1); const( L_WARN => 0);