/usr/share/perl5/Log/Log4perl/Level.pm is in liblog-log4perl-perl 1.49-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 | ###############r###################################
package Log::Log4perl::Level;
##################################################
use 5.006;
use strict;
use warnings;
use Carp;
# log4j, for whatever reason, puts 0 as all and MAXINT as OFF.
# this seems less optimal, as more logging would imply a higher
# level. But oh well. Probably some brokenness that has persisted. :)
use constant ALL_INT => 0;
use constant TRACE_INT => 5000;
use constant DEBUG_INT => 10000;
use constant INFO_INT => 20000;
use constant WARN_INT => 30000;
use constant ERROR_INT => 40000;
use constant FATAL_INT => 50000;
use constant OFF_INT => (2 ** 31) - 1;
no strict qw(refs);
use vars qw(%PRIORITY %LEVELS %SYSLOG %L4P_TO_LD);
%PRIORITY = (); # unless (%PRIORITY);
%LEVELS = () unless (%LEVELS);
%SYSLOG = () unless (%SYSLOG);
%L4P_TO_LD = () unless (%L4P_TO_LD);
sub add_priority {
my ($prio, $intval, $syslog, $log_dispatch_level) = @_;
$prio = uc($prio); # just in case;
$PRIORITY{$prio} = $intval;
$LEVELS{$intval} = $prio;
# Set up the mapping between Log4perl integer levels and
# Log::Dispatch levels
# Note: Log::Dispatch uses the following levels:
# 0 debug
# 1 info
# 2 notice
# 3 warning
# 4 error
# 5 critical
# 6 alert
# 7 emergency
# The equivalent Log::Dispatch level is optional, set it to
# the highest value (7=emerg) if it's not provided.
$log_dispatch_level = 7 unless defined $log_dispatch_level;
$L4P_TO_LD{$prio} = $log_dispatch_level;
$SYSLOG{$prio} = $syslog if defined($syslog);
}
# create the basic priorities
add_priority("OFF", OFF_INT, -1, 7);
add_priority("FATAL", FATAL_INT, 0, 7);
add_priority("ERROR", ERROR_INT, 3, 4);
add_priority("WARN", WARN_INT, 4, 3);
add_priority("INFO", INFO_INT, 6, 1);
add_priority("DEBUG", DEBUG_INT, 7, 0);
add_priority("TRACE", TRACE_INT, 8, 0);
add_priority("ALL", ALL_INT, 8, 0);
# we often sort numerically, so a helper func for readability
sub numerically {$a <=> $b}
###########################################
sub import {
###########################################
my($class, $namespace) = @_;
if(defined $namespace) {
# Export $OFF, $FATAL, $ERROR etc. to
# the given namespace
$namespace .= "::" unless $namespace =~ /::$/;
} else {
# Export $OFF, $FATAL, $ERROR etc. to
# the caller's namespace
$namespace = caller(0) . "::";
}
for my $key (keys %PRIORITY) {
my $name = "$namespace$key";
my $value = $PRIORITY{$key};
*{"$name"} = \$value;
my $nameint = "$namespace${key}_INT";
my $func = uc($key) . "_INT";
*{"$nameint"} = \&$func;
}
}
##################################################
sub new {
##################################################
# We don't need any of this class nonsense
# in Perl, because we won't allow subclassing
# from this. We're optimizing for raw speed.
}
##################################################
sub to_priority {
# changes a level name string to a priority numeric
##################################################
my($string) = @_;
if(exists $PRIORITY{$string}) {
return $PRIORITY{$string};
}else{
croak "level '$string' is not a valid error level (".join ('|', keys %PRIORITY),')';
}
}
##################################################
sub to_level {
# changes a priority numeric constant to a level name string
##################################################
my ($priority) = @_;
if (exists $LEVELS{$priority}) {
return $LEVELS{$priority}
}else {
croak("priority '$priority' is not a valid error level number (",
join("|", sort numerically keys %LEVELS), "
)");
}
}
##################################################
sub to_LogDispatch_string {
# translates into strings that Log::Dispatch recognizes
##################################################
my($priority) = @_;
confess "do what? no priority?" unless defined $priority;
my $string;
if(exists $LEVELS{$priority}) {
$string = $LEVELS{$priority};
}
# Log::Dispatch idiosyncrasies
if($priority == $PRIORITY{WARN}) {
$string = "WARNING";
}
if($priority == $PRIORITY{FATAL}) {
$string = "EMERGENCY";
}
return $string;
}
###################################################
sub is_valid {
###################################################
my $q = shift;
if ($q =~ /[A-Z]/) {
return exists $PRIORITY{$q};
}else{
return $LEVELS{$q};
}
}
sub get_higher_level {
my ($old_priority, $delta) = @_;
$delta ||= 1;
my $new_priority = 0;
foreach (1..$delta){
#so the list is TRACE, DEBUG, INFO, WARN, ERROR, FATAL
# but remember, the numbers go in reverse order!
foreach my $p (sort numerically keys %LEVELS){
if ($p > $old_priority) {
$new_priority = $p;
last;
}
}
$old_priority = $new_priority;
}
return $new_priority;
}
sub get_lower_level {
my ($old_priority, $delta) = @_;
$delta ||= 1;
my $new_priority = 0;
foreach (1..$delta){
#so the list is FATAL, ERROR, WARN, INFO, DEBUG, TRACE
# but remember, the numbers go in reverse order!
foreach my $p (reverse sort numerically keys %LEVELS){
if ($p < $old_priority) {
$new_priority = $p;
last;
}
}
$old_priority = $new_priority;
}
return $new_priority;
}
sub isGreaterOrEqual {
my $lval = shift;
my $rval = shift;
# in theory, we should check if the above really ARE valid levels.
# but we just use numeric comparison, since they aren't really classes.
# oh, yeah, and 'cuz level ints go from 0 .. N with 0 being highest,
# these are reversed.
return $lval <= $rval;
}
######################################################################
#
# since the integer representation of levels is reversed from what
# we normally want, we don't want to use < and >... instead, we
# want to use this comparison function
1;
__END__
=encoding utf8
=head1 NAME
Log::Log4perl::Level - Predefined log levels
=head1 SYNOPSIS
use Log::Log4perl::Level;
print $ERROR, "\n";
# -- or --
use Log::Log4perl qw(:levels);
print $ERROR, "\n";
=head1 DESCRIPTION
C<Log::Log4perl::Level> simply exports a predefined set of I<Log4perl> log
levels into the caller's name space. It is used internally by
C<Log::Log4perl>. The following scalars are defined:
$OFF
$FATAL
$ERROR
$WARN
$INFO
$DEBUG
$TRACE
$ALL
C<Log::Log4perl> also exports these constants into the caller's namespace
if you pull it in providing the C<:levels> tag:
use Log::Log4perl qw(:levels);
This is the preferred way, there's usually no need to call
C<Log::Log4perl::Level> explicitly.
The numerical values assigned to these constants are purely virtual,
only used by Log::Log4perl internally and can change at any time,
so please don't make any assumptions. You can test for numerical equality
by directly comparing two level values, that's ok:
if( get_logger()->level() == $DEBUG ) {
print "The logger's level is DEBUG\n";
}
But if you want to figure out which of two levels is more verbose, use
Log4perl's own comparator:
if( Log::Log4perl::Level::isGreaterOrEqual( $level1, $level2 ) ) {
print Log::Log4perl::Level::to_level( $level1 ),
" is equal or more verbose than ",
Log::Log4perl::Level::to_level( $level2 ), "\n";
}
If the caller wants to import level constants into a different namespace,
it can be provided with the C<use> command:
use Log::Log4perl::Level qw(MyNameSpace);
After this C<$MyNameSpace::ERROR>, C<$MyNameSpace::INFO> etc.
will be defined accordingly.
=head2 Numeric levels and Strings
Level variables like $DEBUG or $WARN have numeric values that are
internal to Log4perl. Transform them to strings that can be used
in a Log4perl configuration file, use the c<to_level()> function
provided by Log::Log4perl::Level:
use Log::Log4perl qw(:easy);
use Log::Log4perl::Level;
# prints "DEBUG"
print Log::Log4perl::Level::to_level( $DEBUG ), "\n";
To perform the reverse transformation, which takes a string like
"DEBUG" and converts it into a constant like C<$DEBUG>, use the
to_priority() function:
use Log::Log4perl qw(:easy);
use Log::Log4perl::Level;
my $numval = Log::Log4perl::Level::to_priority( "DEBUG" );
after which $numval could be used where a numerical value is required:
Log::Log4perl->easy_init( $numval );
=head1 LICENSE
Copyright 2002-2013 by Mike Schilli E<lt>m@perlmeister.comE<gt>
and Kevin Goess E<lt>cpan@goess.orgE<gt>.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
Please contribute patches to the project on Github:
http://github.com/mschilli/log4perl
Send bug reports or requests for enhancements to the authors via our
MAILING LIST (questions, bug reports, suggestions/patches):
log4perl-devel@lists.sourceforge.net
Authors (please contact them via the list above, not directly):
Mike Schilli <m@perlmeister.com>,
Kevin Goess <cpan@goess.org>
Contributors (in alphabetical order):
Ateeq Altaf, Cory Bennett, Jens Berthold, Jeremy Bopp, Hutton
Davidson, Chris R. Donnelly, Matisse Enzer, Hugh Esco, Anthony
Foiani, James FitzGibbon, Carl Franks, Dennis Gregorovic, Andy
Grundman, Paul Harrington, Alexander Hartmaier David Hull,
Robert Jacobson, Jason Kohles, Jeff Macdonald, Markus Peter,
Brett Rann, Peter Rabbitson, Erik Selberg, Aaron Straup Cope,
Lars Thegler, David Viner, Mac Yang.
|