Server IP : 103.119.228.120 / Your IP : 13.59.111.183 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/local/ssl/local/share/perl5/Log/Log4perl/Appender/ |
Upload File : |
################################################## package Log::Log4perl::Appender::ScreenColoredLevels; ################################################## use Log::Log4perl::Appender::Screen; our @ISA = qw(Log::Log4perl::Appender::Screen); use warnings; use strict; use Term::ANSIColor qw(); use Log::Log4perl::Level; BEGIN { $Term::ANSIColor::EACHLINE="\n"; } ################################################## sub new { ################################################## my($class, %options) = @_; my %specific_options = ( color => {} ); for my $option ( keys %specific_options ) { $specific_options{ $option } = delete $options{ $option } if exists $options{ $option }; } my $self = $class->SUPER::new( %options ); @$self{ keys %specific_options } = values %specific_options; bless $self, __PACKAGE__; # rebless # also accept lower/mixed case levels in config for my $level ( keys %{ $self->{color} } ) { my $uclevel = uc($level); $self->{color}->{$uclevel} = $self->{color}->{$level}; } my %default_colors = ( TRACE => 'yellow', DEBUG => '', INFO => 'green', WARN => 'blue', ERROR => 'magenta', FATAL => 'red', ); for my $level ( keys %default_colors ) { if ( ! exists $self->{ 'color' }->{ $level } ) { $self->{ 'color' }->{ $level } = $default_colors{ $level }; } } bless $self, $class; } ################################################## sub log { ################################################## my($self, %params) = @_; my $msg = $params{ 'message' }; if ( my $color = $self->{ 'color' }->{ $params{ 'log4p_level' } } ) { $msg = Term::ANSIColor::colored( $msg, $color ); } if($self->{stderr}) { print STDERR $msg; } else { print $msg; } } 1; __END__ =encoding utf8 =head1 NAME Log::Log4perl::Appender::ScreenColoredLevel - Colorize messages according to level =head1 SYNOPSIS use Log::Log4perl qw(:easy); Log::Log4perl->init(\ <<'EOT'); log4perl.category = DEBUG, Screen log4perl.appender.Screen = \ Log::Log4perl::Appender::ScreenColoredLevels log4perl.appender.Screen.layout = \ Log::Log4perl::Layout::PatternLayout log4perl.appender.Screen.layout.ConversionPattern = \ %d %F{1} %L> %m %n EOT # Appears black DEBUG "Debug Message"; # Appears green INFO "Info Message"; # Appears blue WARN "Warn Message"; # Appears magenta ERROR "Error Message"; # Appears red FATAL "Fatal Message"; =head1 DESCRIPTION This appender acts like Log::Log4perl::Appender::Screen, except that it colorizes its output, based on the priority of the message sent. You can configure the colors and attributes used for the different levels, by specifying them in your configuration: log4perl.appender.Screen.color.TRACE=cyan log4perl.appender.Screen.color.DEBUG=bold blue You can also specify nothing, to indicate that level should not have coloring applied, which means the text will be whatever the default color for your terminal is. This is the default for debug messages. log4perl.appender.Screen.color.DEBUG= You can use any attribute supported by L<Term::ANSIColor> as a configuration option. log4perl.appender.Screen.color.FATAL=\ bold underline blink red on_white The commonly used colors and attributes are: =over 4 =item attributes BOLD, DARK, UNDERLINE, UNDERSCORE, BLINK =item colors BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE =item background colors ON_BLACK, ON_RED, ON_GREEN, ON_YELLOW, ON_BLUE, ON_MAGENTA, ON_CYAN, ON_WHITE =back See L<Term::ANSIColor> for a complete list, and information on which are supported by various common terminal emulators. The default values for these options are: =over 4 =item Trace Yellow =item Debug None (whatever the terminal default is) =item Info Green =item Warn Blue =item Error Magenta =item Fatal Red =back The constructor C<new()> takes an optional parameter C<stderr>, if set to a true value, the appender will log to STDERR. If C<stderr> is set to a false value, it will log to STDOUT. The default setting for C<stderr> is 1, so messages will be logged to STDERR by default. The constructor can also take an optional parameter C<color>, whose value is a hashref of color configuration options, any levels that are not included in the hashref will be set to their default values. =head2 Using ScreenColoredLevels on Windows Note that if you're using this appender on Windows, you need to fetch Win32::Console::ANSI from CPAN and add use Win32::Console::ANSI; to your script. =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.