From: Alan T. DeKok Date: Wed, 22 Feb 2012 08:25:18 +0000 (+0100) Subject: Use names for logging parameters, and correct values X-Git-Tag: release_3_0_0_beta0~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2dbb9ed9e5370f2cff360d16d3e42477a4f0341c;p=thirdparty%2Ffreeradius-server.git Use names for logging parameters, and correct values --- diff --git a/src/modules/rlm_perl/example.pl b/src/modules/rlm_perl/example.pl index f4cf13fe4da..82f3f5ddc15 100644 --- a/src/modules/rlm_perl/example.pl +++ b/src/modules/rlm_perl/example.pl @@ -66,6 +66,14 @@ use constant L_ERR=> 4; use constant L_PROXY=> 5; use constant L_ACCT=> 6; +# Same as src/include/radiusd.h +use constant L_DBG=> 1; +use constant L_AUTH=> 2; +use constant L_INFO=> 3; +use constant L_ERR=> 4; +use constant L_PROXY=> 5; +use constant L_ACCT=> 6; + # Global variables can persist across different calls to the module. # #