ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent/Log.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent/Log.pm (file contents):
Revision 1.21 by root, Sat Aug 20 22:33:08 2011 UTC vs.
Revision 1.41 by root, Thu Sep 1 04:07:18 2011 UTC

2 2
3AnyEvent::Log - simple logging "framework" 3AnyEvent::Log - simple logging "framework"
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 # simple use 7Simple uses:
8
8 use AnyEvent; 9 use AnyEvent;
9 10
10 AE::log debug => "hit my knee"; 11 AE::log debug => "hit my knee";
11 AE::log warn => "it's a bit too hot"; 12 AE::log warn => "it's a bit too hot";
12 AE::log error => "the flag was false!"; 13 AE::log error => "the flag was false!";
13 AE::log fatal => "the bit toggled! run!"; 14 AE::log fatal => "the bit toggled! run!"; # never returns
14 15
15 # "complex" use 16 # available log levels in order:
17 # fatal alert critical error warn note info debug trace
18
19"Complex" uses (for speed sensitive code):
20
16 use AnyEvent::Log; 21 use AnyEvent::Log;
17 22
18 my $tracer = AnyEvent::Log::logger trace => \$my $trace; 23 my $tracer = AnyEvent::Log::logger trace => \$my $trace;
19 24
20 $tracer->("i am here") if $trace; 25 $tracer->("i am here") if $trace;
21 $tracer->(sub { "lots of data: " . Dumper $self }) if $trace; 26 $tracer->(sub { "lots of data: " . Dumper $self }) if $trace;
22 27
23 # configuration 28Configuration (also look at the EXAMPLES section):
24 29
25 # set logging for the current package to errors and higher only 30 # set logging for the current package to errors and higher only
26 AnyEvent::Log::ctx->level ("error"); 31 AnyEvent::Log::ctx->level ("error");
27 32
28 # set logging globally to anything below debug 33 # set logging level to suppress anything below "notice"
29 $AnyEvent::Log::FILTER->level ("notice"); 34 $AnyEvent::Log::FILTER->level ("notice");
30 35
31 # see also EXAMPLES, below 36 # send all critical and higher priority messages to syslog,
37 # regardless of (most) other settings
38 $AnyEvent::Log::COLLECT->attach (new AnyEvent::Log::Ctx
39 level => "critical",
40 log_to_syslog => "user",
41 );
32 42
33=head1 DESCRIPTION 43=head1 DESCRIPTION
34 44
35This module implements a relatively simple "logging framework". It doesn't 45This module implements a relatively simple "logging framework". It doesn't
36attempt to be "the" logging solution or even "a" logging solution for 46attempt to be "the" logging solution or even "a" logging solution for
42will be logged, unless you set C<PERL_ANYEVENT_VERBOSE> to a higher number 52will be logged, unless you set C<PERL_ANYEVENT_VERBOSE> to a higher number
43before starting your program, or change the logging level at runtime with 53before starting your program, or change the logging level at runtime with
44something like: 54something like:
45 55
46 use AnyEvent::Log; 56 use AnyEvent::Log;
47 AnyEvent::Log::FILTER->level ("info"); 57 $AnyEvent::Log::FILTER->level ("info");
48 58
49The design goal behind this module was to keep it simple (and small), 59The design goal behind this module was to keep it simple (and small),
50but make it powerful enough to be potentially useful for any module, and 60but make it powerful enough to be potentially useful for any module, and
51extensive enough for the most common tasks, such as logging to multiple 61extensive enough for the most common tasks, such as logging to multiple
52targets, or being able to log into a database. 62targets, or being able to log into a database.
53 63
64The module is also usable before AnyEvent itself is initialised, in which
65case some of the functionality might be reduced.
66
54The amount of documentation might indicate otherwise, but the module is 67The amount of documentation might indicate otherwise, but the runtime part
55still just below 300 lines of code. 68of the module is still just below 300 lines of code.
56 69
57=head1 LOGGING LEVELS 70=head1 LOGGING LEVELS
58 71
59Logging levels in this module range from C<1> (highest priority) to C<9> 72Logging levels in this module range from C<1> (highest priority) to C<9>
60(lowest priority). Note that the lowest numerical value is the highest 73(lowest priority). Note that the lowest numerical value is the highest
74 8 debug 87 8 debug
75 9 trace 88 9 trace
76 89
77As you can see, some logging levels have multiple aliases - the first one 90As you can see, some logging levels have multiple aliases - the first one
78is the "official" name, the second one the "syslog" name (if it differs) 91is the "official" name, the second one the "syslog" name (if it differs)
79and the third one the "perl" name, suggesting that you log C<die> messages 92and the third one the "perl" name, suggesting (only!) that you log C<die>
80at C<error> priority. 93messages at C<error> priority.
81 94
82You can normally only log a single message at highest priority level 95You can normally only log a single message at highest priority level
83(C<1>, C<fatal>), because logging a fatal message will also quit the 96(C<1>, C<fatal>), because logging a fatal message will also quit the
84program - so use it sparingly :) 97program - so use it sparingly :)
85 98
101 114
102use Carp (); 115use Carp ();
103use POSIX (); 116use POSIX ();
104 117
105use AnyEvent (); BEGIN { AnyEvent::common_sense } 118use AnyEvent (); BEGIN { AnyEvent::common_sense }
106use AnyEvent::Util (); 119#use AnyEvent::Util (); need to load this in a delayed fashion, as it uses AE::log
107 120
108our $VERSION = $AnyEvent::VERSION; 121our $VERSION = $AnyEvent::VERSION;
109 122
110our ($COLLECT, $FILTER, $LOG); 123our ($COLLECT, $FILTER, $LOG);
111 124
138 $ctx 151 $ctx
139} 152}
140 153
141=item AnyEvent::Log::log $level, $msg[, @args] 154=item AnyEvent::Log::log $level, $msg[, @args]
142 155
143Requests logging of the given C<$msg> with the given log level. 156Requests logging of the given C<$msg> with the given log level, and
157returns true if the message was logged I<somewhere>.
144 158
145For C<fatal> log levels, the program will abort. 159For loglevel C<fatal>, the program will abort.
146 160
147If only a C<$msg> is given, it is logged as-is. With extra C<@args>, the 161If only a C<$msg> is given, it is logged as-is. With extra C<@args>, the
148C<$msg> is interpreted as an sprintf format string. 162C<$msg> is interpreted as an sprintf format string.
149 163
150The C<$msg> should not end with C<\n>, but may if that is convenient for 164The C<$msg> should not end with C<\n>, but may if that is convenient for
154supposed to return the message. It will be called only then the message 168supposed to return the message. It will be called only then the message
155actually gets logged, which is useful if it is costly to create the 169actually gets logged, which is useful if it is costly to create the
156message in the first place. 170message in the first place.
157 171
158Whether the given message will be logged depends on the maximum log level 172Whether the given message will be logged depends on the maximum log level
159and the caller's package. 173and the caller's package. The return value can be used to ensure that
174messages or not "lost" - for example, when L<AnyEvent::Debug> detects a
175runtime error it tries to log it at C<die> level, but if that message is
176lost it simply uses warn.
160 177
161Note that you can (and should) call this function as C<AnyEvent::log> or 178Note that you can (and should) call this function as C<AnyEvent::log> or
162C<AE::log>, without C<use>-ing this module if possible (i.e. you don't 179C<AE::log>, without C<use>-ing this module if possible (i.e. you don't
163need any additional functionality), as those functions will load the 180need any additional functionality), as those functions will load the
164logging module on demand only. They are also much shorter to write. 181logging module on demand only. They are also much shorter to write.
192 info => 7, 209 info => 7,
193 debug => 8, 210 debug => 8,
194 trace => 9, 211 trace => 9,
195); 212);
196 213
197sub now () { time } 214our $TIME_EXACT;
215
216sub exact_time($) {
217 $TIME_EXACT = shift;
218 *_ts = $AnyEvent::MODEL
219 ? $TIME_EXACT ? \&AE::now : \&AE::time
220 : sub () { $TIME_EXACT ? do { require Time::HiRes; Time::HiRes::time () } : time };
221}
222
223BEGIN {
224 exact_time 0;
225}
198 226
199AnyEvent::post_detect { 227AnyEvent::post_detect {
200 *now = \&AE::now; 228 exact_time $TIME_EXACT;
201}; 229};
202 230
203our @LEVEL2STR = qw(0 fatal alert crit error warn note info debug trace); 231our @LEVEL2STR = qw(0 fatal alert crit error warn note info debug trace);
204 232
205# time, ctx, level, msg 233# time, ctx, level, msg
224 ? $level+0 252 ? $level+0
225 : $STR2LEVEL{$level} || Carp::croak "$level: not a valid logging level, caught"; 253 : $STR2LEVEL{$level} || Carp::croak "$level: not a valid logging level, caught";
226 254
227 my $mask = 1 << $level; 255 my $mask = 1 << $level;
228 256
229 my (%seen, @ctx, $now, $fmt); 257 my ($success, %seen, @ctx, $now, $fmt);
230 258
231 do 259 do
232 { 260 {
233 # skip if masked 261 # skip if masked
234 if ($ctx->[1] & $mask && !$seen{$ctx+0}++) { 262 if ($ctx->[1] & $mask && !$seen{$ctx+0}++) {
238 # now get raw message, unless we have it already 266 # now get raw message, unless we have it already
239 unless ($now) { 267 unless ($now) {
240 $format = $format->() if ref $format; 268 $format = $format->() if ref $format;
241 $format = sprintf $format, @args if @args; 269 $format = sprintf $format, @args if @args;
242 $format =~ s/\n$//; 270 $format =~ s/\n$//;
243 $now = AE::now; 271 $now = _ts;
244 }; 272 };
245 273
246 # format msg 274 # format msg
247 my $str = $ctx->[4] 275 my $str = $ctx->[4]
248 ? $ctx->[4]($now, $_[0], $level, $format) 276 ? $ctx->[4]($now, $_[0], $level, $format)
249 : ($fmt ||= _format $now, $_[0], $level, $format); 277 : ($fmt ||= _format $now, $_[0], $level, $format);
278
279 $success = 1;
250 280
251 $ctx->[3]($str) 281 $ctx->[3]($str)
252 or push @ctx, values %{ $ctx->[2] }; # not consumed - propagate 282 or push @ctx, values %{ $ctx->[2] }; # not consumed - propagate
253 } else { 283 } else {
254 push @ctx, values %{ $ctx->[2] }; # not masked - propagate 284 push @ctx, values %{ $ctx->[2] }; # not masked - propagate
256 } 286 }
257 } 287 }
258 while $ctx = pop @ctx; 288 while $ctx = pop @ctx;
259 289
260 exit 1 if $level <= 1; 290 exit 1 if $level <= 1;
291
292 $success
261} 293}
262 294
263sub log($$;@) { 295sub log($$;@) {
264 _log 296 _log
265 $CTX{ (caller)[0] } ||= _pkg_ctx +(caller)[0], 297 $CTX{ (caller)[0] } ||= _pkg_ctx +(caller)[0],
269*AnyEvent::log = *AE::log = \&log; 301*AnyEvent::log = *AE::log = \&log;
270 302
271=item $logger = AnyEvent::Log::logger $level[, \$enabled] 303=item $logger = AnyEvent::Log::logger $level[, \$enabled]
272 304
273Creates a code reference that, when called, acts as if the 305Creates a code reference that, when called, acts as if the
274C<AnyEvent::Log::log> function was called at this point with the givne 306C<AnyEvent::Log::log> function was called at this point with the given
275level. C<$logger> is passed a C<$msg> and optional C<@args>, just as with 307level. C<$logger> is passed a C<$msg> and optional C<@args>, just as with
276the C<AnyEvent::Log::log> function: 308the C<AnyEvent::Log::log> function:
277 309
278 my $debug_log = AnyEvent::Log::logger "debug"; 310 my $debug_log = AnyEvent::Log::logger "debug";
279 311
339 371
340 $LOGGER{$logger+0} = $logger; 372 $LOGGER{$logger+0} = $logger;
341 373
342 _reassess $logger+0; 374 _reassess $logger+0;
343 375
376 require AnyEvent::Util;
344 my $guard = AnyEvent::Util::guard { 377 my $guard = AnyEvent::Util::guard (sub {
345 # "clean up" 378 # "clean up"
346 delete $LOGGER{$logger+0}; 379 delete $LOGGER{$logger+0};
347 }; 380 });
348 381
349 sub { 382 sub {
350 $guard if 0; # keep guard alive, but don't cause runtime overhead 383 $guard if 0; # keep guard alive, but don't cause runtime overhead
351 384
352 _log $ctx, $level, @_ 385 _log $ctx, $level, @_
357sub logger($;$) { 390sub logger($;$) {
358 _logger 391 _logger
359 $CTX{ (caller)[0] } ||= _pkg_ctx +(caller)[0], 392 $CTX{ (caller)[0] } ||= _pkg_ctx +(caller)[0],
360 @_ 393 @_
361} 394}
395
396=item AnyEvent::Log::exact_time $on
397
398By default, C<AnyEvent::Log> will use C<AE::now>, i.e. the cached
399eventloop time, for the log timestamps. After calling this function with a
400true value it will instead resort to C<AE::time>, i.e. fetch the current
401time on each log message. This only makes a difference for event loops
402that actually cache the time (such as L<EV> or L<AnyEvent::Loop>).
403
404This setting can be changed at any time by calling this function.
405
406Since C<AnyEvent::Log> has to work even before the L<AnyEvent> has been
407initialised, this switch will also decide whether to use C<CORE::time> or
408C<Time::HiRes::time> when logging a message before L<AnyEvent> becomes
409available.
362 410
363=back 411=back
364 412
365=head1 LOGGING CONTEXTS 413=head1 LOGGING CONTEXTS
366 414
498 } 546 }
499 547
500 @$_ = ($_->[0], (1 << 10) - 1 - 1) 548 @$_ = ($_->[0], (1 << 10) - 1 - 1)
501 for $LOG, $FILTER, $COLLECT; 549 for $LOG, $FILTER, $COLLECT;
502 550
503 $LOG->slaves; 551 #$LOG->slaves;
504 $LOG->title ('$AnyEvent::Log::LOG'); 552 $LOG->title ('$AnyEvent::Log::LOG');
505 $LOG->log_cb (sub { 553 $LOG->log_to_warn;
506 warn shift;
507 0
508 });
509 554
510 $FILTER->slaves ($LOG); 555 $FILTER->slaves ($LOG);
511 $FILTER->title ('$AnyEvent::Log::FILTER'); 556 $FILTER->title ('$AnyEvent::Log::FILTER');
512 $FILTER->level ($AnyEvent::VERBOSE); 557 $FILTER->level ($AnyEvent::VERBOSE);
513 558
774logging context, the (numeric) logging level and the raw message string 819logging context, the (numeric) logging level and the raw message string
775and needs to return a formatted log message. In most cases this will be a 820and needs to return a formatted log message. In most cases this will be a
776string, but it could just as well be an array reference that just stores 821string, but it could just as well be an array reference that just stores
777the values. 822the values.
778 823
779If, for some reaosn, you want to use C<caller> to find out more baout the 824If, for some reason, you want to use C<caller> to find out more baout the
780logger then you should walk up the call stack until you are no longer 825logger then you should walk up the call stack until you are no longer
781inside the C<AnyEvent::Log> package. 826inside the C<AnyEvent::Log> package.
782 827
783Example: format just the raw message, with numeric log level in angle 828Example: format just the raw message, with numeric log level in angle
784brackets. 829brackets.
803 "$msg->[3]"; 848 "$msg->[3]";
804 849
805 0 850 0
806 }); 851 });
807 852
853=item $ctx->log_to_warn
854
855Sets the C<log_cb> to simply use C<CORE::warn> to report any messages
856(usually this logs to STDERR).
857
808=item $ctx->log_to_file ($path) 858=item $ctx->log_to_file ($path)
809 859
810Sets the C<log_cb> to log to a file (by appending), unbuffered. 860Sets the C<log_cb> to log to a file (by appending), unbuffered.
811 861
812=item $ctx->log_to_path ($path) 862=item $ctx->log_to_path ($path)
813 863
814Same as C<< ->log_to_file >>, but opens the file for each message. This 864Same as C<< ->log_to_file >>, but opens the file for each message. This
815is much slower, but allows you to change/move/rename/delete the file at 865is much slower, but allows you to change/move/rename/delete the file at
816basically any time. 866basically any time.
817 867
868Needless(?) to say, if you do not want to be bitten by some evil person
869calling C<chdir>, the path should be absolute. Doesn't help with
870C<chroot>, but hey...
871
818=item $ctx->log_to_syslog ([$log_flags]) 872=item $ctx->log_to_syslog ([$facility])
819 873
820Logs all messages via L<Sys::Syslog>, mapping C<trace> to C<debug> and all 874Logs all messages via L<Sys::Syslog>, mapping C<trace> to C<debug> and
821the others in the obvious way. If specified, then the C<$log_flags> are 875all the others in the obvious way. If specified, then the C<$facility> is
822simply or'ed onto the priority argument and can contain any C<LOG_xxx> 876used as the facility (C<user>, C<auth>, C<local0> and so on). The default
823flags valid for Sys::Syslog::syslog, except for the priority levels. 877facility is C<user>.
824 878
825Note that this function also sets a C<fmt_cb> - the logging part requires 879Note that this function also sets a C<fmt_cb> - the logging part requires
826an array reference with [$level, $str] as input. 880an array reference with [$level, $str] as input.
827 881
828=cut 882=cut
835 889
836sub fmt_cb { 890sub fmt_cb {
837 my ($ctx, $cb) = @_; 891 my ($ctx, $cb) = @_;
838 892
839 $ctx->[4] = $cb; 893 $ctx->[4] = $cb;
894}
895
896sub log_to_warn {
897 my ($ctx, $path) = @_;
898
899 $ctx->log_cb (sub {
900 warn shift;
901 0
902 });
840} 903}
841 904
842sub log_to_file { 905sub log_to_file {
843 my ($ctx, $path) = @_; 906 my ($ctx, $path) = @_;
844 907
849 syswrite $fh, shift; 912 syswrite $fh, shift;
850 0 913 0
851 }); 914 });
852} 915}
853 916
854sub log_to_file { 917sub log_to_path {
855 my ($ctx, $path) = @_; 918 my ($ctx, $path) = @_;
856 919
857 $ctx->log_cb (sub { 920 $ctx->log_cb (sub {
858 open my $fh, ">>", $path 921 open my $fh, ">>", $path
859 or die "$path: $!"; 922 or die "$path: $!";
862 0 925 0
863 }); 926 });
864} 927}
865 928
866sub log_to_syslog { 929sub log_to_syslog {
867 my ($ctx, $flags) = @_; 930 my ($ctx, $facility) = @_;
868 931
869 require Sys::Syslog; 932 require Sys::Syslog;
870 933
871 $ctx->fmt_cb (sub { 934 $ctx->fmt_cb (sub {
872 my $str = $_[3]; 935 my $str = $_[3];
873 $str =~ s/\n(?=.)/\n+ /g; 936 $str =~ s/\n(?=.)/\n+ /g;
874 937
875 [$_[2], "($_[1][0]) $str"] 938 [$_[2], "($_[1][0]) $str"]
876 }); 939 });
877 940
941 $facility ||= "user";
942
878 $ctx->log_cb (sub { 943 $ctx->log_cb (sub {
879 my $lvl = $_[0][0] < 9 ? $_[0][0] : 8; 944 my $lvl = $_[0][0] < 9 ? $_[0][0] : 8;
880 945
881 Sys::Syslog::syslog ($flags | ($lvl - 1), $_) 946 Sys::Syslog::syslog ("$facility|" . ($lvl - 1), $_)
882 for split /\n/, $_[0][1]; 947 for split /\n/, $_[0][1];
883 948
884 0 949 0
885 }); 950 });
886} 951}
906=cut 971=cut
907 972
908*log = \&AnyEvent::Log::_log; 973*log = \&AnyEvent::Log::_log;
909*logger = \&AnyEvent::Log::_logger; 974*logger = \&AnyEvent::Log::_logger;
910 975
976=back
977
978=cut
979
980package AnyEvent::Log;
981
982=head1 CONFIGURATION VIA $ENV{PERL_ANYEVENT_LOG}
983
984Logging can also be configured by setting the environment variable
985C<PERL_ANYEVENT_LOG> (or C<AE_LOG>).
986
987The value consists of one or more logging context specifications separated
988by C<:> or whitespace. Each logging specification in turn starts with a
989context name, followed by C<=>, followed by zero or more comma-separated
990configuration directives, here are some examples:
991
992 # set default logging level
993 filter=warn
994
995 # log to file instead of to stderr
996 log=file=/tmp/mylog
997
998 # log to file in addition to stderr
999 log=+%file:%file=file=/tmp/mylog
1000
1001 # enable debug log messages, log warnings and above to syslog
1002 filter=debug:log=+%warnings:%warnings=warn,syslog=LOG_LOCAL0
1003
1004 # log trace messages (only) from AnyEvent::Debug to file
1005 AnyEvent::Debug=+%trace:%trace=only,trace,file=/tmp/tracelog
1006
1007A context name in the log specification can be any of the following:
1008
1009=over 4
1010
1011=item C<collect>, C<filter>, C<log>
1012
1013Correspond to the three predefined C<$AnyEvent::Log::COLLECT>,
1014C<AnyEvent::Log::FILTER> and C<$AnyEvent::Log::LOG> contexts.
1015
1016=item C<%name>
1017
1018Context names starting with a C<%> are anonymous contexts created when the
1019name is first mentioned. The difference to package contexts is that by
1020default they have no attached slaves.
1021
1022=item a perl package name
1023
1024Any other string references the logging context associated with the given
1025Perl C<package>. In the unlikely case where you want to specify a package
1026context that matches on of the other context name forms, you can add a
1027C<::> to the package name to force interpretation as a package.
1028
1029=back
1030
1031The configuration specifications can be any number of the following:
1032
1033=over 4
1034
1035=item C<stderr>
1036
1037Configures the context to use Perl's C<warn> function (which typically
1038logs to C<STDERR>). Works like C<log_to_warn>.
1039
1040=item C<file=>I<path>
1041
1042Configures the context to log to a file with the given path. Works like
1043C<log_to_file>.
1044
1045=item C<path=>I<path>
1046
1047Configures the context to log to a file with the given path. Works like
1048C<log_to_path>.
1049
1050=item C<syslog> or C<syslog=>I<expr>
1051
1052Configures the context to log to syslog. If I<expr> is given, then it is
1053evaluated in the L<Sys::Syslog> package, so you could use:
1054
1055 log=syslog=LOG_LOCAL0
1056
1057=item C<nolog>
1058
1059Configures the context to not log anything by itself, which is the
1060default. Same as C<< $ctx->log_cb (undef) >>.
1061
1062=item C<0> or C<off>
1063
1064Sets the logging level of the context ot C<0>, i.e. all messages will be
1065filtered out.
1066
1067=item C<all>
1068
1069Enables all logging levels, i.e. filtering will effectively be switched
1070off (the default).
1071
1072=item C<only>
1073
1074Disables all logging levels, and changes the interpretation of following
1075level specifications to enable the specified level only.
1076
1077Example: only enable debug messages for a context.
1078
1079 context=only,debug
1080
1081=item C<except>
1082
1083Enables all logging levels, and changes the interpretation of following
1084level specifications to disable that level. Rarely used.
1085
1086Example: enable all logging levels except fatal and trace (this is rather
1087nonsensical).
1088
1089 filter=exept,fatal,trace
1090
1091=item C<level>
1092
1093Enables all logging levels, and changes the interpretation of following
1094level specifications to be "that level or any higher priority
1095message". This is the default.
1096
1097Example: log anything at or above warn level.
1098
1099 filter=warn
1100
1101 # or, more verbose
1102 filter=only,level,warn
1103
1104=item C<1>..C<9> or a logging level name (C<error>, C<debug> etc.)
1105
1106A numeric loglevel or the name of a loglevel will be interpreted according
1107to the most recent C<only>, C<except> or C<level> directive. By default,
1108specifying a logging level enables that and any higher priority messages.
1109
1110=item C<+>I<context>
1111
1112Attaches the named context as slave to the context.
1113
1114=item C<+>
1115
1116A line C<+> detaches all contexts, i.e. clears the slave list from the
1117context. Anonymous (C<%name>) contexts have no attached slaves by default,
1118but package contexts have the parent context as slave by default.
1119
1120Example: log messages from My::Module to a file, do not send them to the
1121default log collector.
1122
1123 My::Module=+,file=/tmp/mymodulelog
1124
1125=back
1126
1127Any character can be escaped by prefixing it with a C<\> (backslash), as
1128usual, so to log to a file containing a comma, colon, backslash and some
1129spaces in the filename, you would do this:
1130
1131 PERL_ANYEVENT_LOG='log=file=/some\ \:file\ with\,\ \\-escapes'
1132
1133Since whitespace (which includes newlines) is allowed, it is fine to
1134specify multiple lines in C<PERL_ANYEVENT_LOG>, e.g.:
1135
1136 PERL_ANYEVENT_LOG="
1137 filter=warn
1138 AnyEvent::Debug=+%trace
1139 %trace=only,trace,+log
1140 " myprog
1141
1142Also, in the unlikely case when you want to concatenate specifications,
1143use whitespace as separator, as C<::> will be interpreted as part of a
1144module name, an empty spec with two separators:
1145
1146 PERL_ANYEVENT_LOG="$PERL_ANYEVENT_LOG MyMod=debug"
1147
1148=cut
1149
1150for (my $spec = $ENV{PERL_ANYEVENT_LOG}) {
1151 my %anon;
1152
1153 my $pkg = sub {
1154 $_[0] eq "log" ? $LOG
1155 : $_[0] eq "filter" ? $FILTER
1156 : $_[0] eq "collect" ? $COLLECT
1157 : $_[0] =~ /^%(.+)$/ ? ($anon{$1} ||= ctx undef)
1158 : $_[0] =~ /^(.*?)(?:::)?$/ ? ctx "$1" # egad :/
1159 : die # never reached?
1160 };
1161
1162 /\G[[:space:]]+/gc; # skip initial whitespace
1163
1164 while (/\G((?:[^:=[:space:]]+|::|\\.)+)=/gc) {
1165 my $ctx = $pkg->($1);
1166 my $level = "level";
1167
1168 while (/\G((?:[^,:[:space:]]+|::|\\.)+)/gc) {
1169 for ("$1") {
1170 if ($_ eq "stderr" ) { $ctx->log_to_warn;
1171 } elsif (/^file=(.+)/ ) { $ctx->log_to_file ("$1");
1172 } elsif (/^path=(.+)/ ) { $ctx->log_to_path ("$1");
1173 } elsif (/syslog(?:=(.*))?/ ) { require Sys::Syslog; $ctx->log_to_syslog ($1);
1174 } elsif ($_ eq "nolog" ) { $ctx->log_cb (undef);
1175 } elsif (/^\+(.+)$/ ) { $ctx->attach ($pkg->("$1"));
1176 } elsif ($_ eq "+" ) { $ctx->slaves;
1177 } elsif ($_ eq "off" or $_ eq "0") { $ctx->level (0);
1178 } elsif ($_ eq "all" ) { $ctx->level ("all");
1179 } elsif ($_ eq "level" ) { $ctx->level ("all"); $level = "level";
1180 } elsif ($_ eq "only" ) { $ctx->level ("off"); $level = "enable";
1181 } elsif ($_ eq "except" ) { $ctx->level ("all"); $level = "disable";
1182 } elsif (/^\d$/ ) { $ctx->$level ($_);
1183 } elsif (exists $STR2LEVEL{$_} ) { $ctx->$level ($_);
1184 } else { die "PERL_ANYEVENT_LOG ($spec): parse error at '$_'\n";
1185 }
1186 }
1187
1188 /\G,/gc or last;
1189 }
1190
1191 /\G[:[:space:]]+/gc or last;
1192 }
1193
1194 /\G[[:space:]]+/gc; # skip trailing whitespace
1195
1196 if (/\G(.+)/g) {
1197 die "PERL_ANYEVENT_LOG ($spec): parse error at '$1'\n";
1198 }
1199}
1200
9111; 12011;
912 1202
913=back
914
915=head1 EXAMPLES 1203=head1 EXAMPLES
916 1204
917This section shows some common configurations. 1205This section shows some common configurations, both as code, and as
1206C<PERL_ANYEVENT_LOG> string.
918 1207
919=over 4 1208=over 4
920 1209
921=item Setting the global logging level. 1210=item Setting the global logging level.
922 1211
923Either put PERL_ANYEVENT_VERBOSE=<number> into your environment before 1212Either put C<PERL_ANYEVENT_VERBOSE=><number> into your environment before
924running your program, or modify the log level of the root context: 1213running your program, use C<PERL_ANYEVENT_LOG> or modify the log level of
1214the root context at runtime:
925 1215
926 PERL_ANYEVENT_VERBOSE=5 ./myprog 1216 PERL_ANYEVENT_VERBOSE=5 ./myprog
927 1217
1218 PERL_ANYEVENT_LOG=log=warn
1219
928 $AnyEvent::Log::FILTER->level ("warn"); 1220 $AnyEvent::Log::FILTER->level ("warn");
929 1221
930=item Append all messages to a file instead of sending them to STDERR. 1222=item Append all messages to a file instead of sending them to STDERR.
931 1223
932This is affected by the global logging level. 1224This is affected by the global logging level.
933 1225
934 $AnyEvent::Log::LOG->log_to_file ($path); (sub { 1226 $AnyEvent::Log::LOG->log_to_file ($path);
1227
1228 PERL_ANYEVENT_LOG=log=file=/some/path
935 1229
936=item Write all messages with priority C<error> and higher to a file. 1230=item Write all messages with priority C<error> and higher to a file.
937 1231
938This writes them only when the global logging level allows it, because 1232This writes them only when the global logging level allows it, because
939it is attached to the default context which is invoked I<after> global 1233it is attached to the default context which is invoked I<after> global
940filtering. 1234filtering.
941 1235
942 $AnyEvent::Log::FILTER->attach 1236 $AnyEvent::Log::FILTER->attach
943 new AnyEvent::Log::Ctx log_to_file => $path); 1237 new AnyEvent::Log::Ctx log_to_file => $path);
944 1238
1239 PERL_ANYEVENT_LOG=filter=+%filelogger:%filelogger=file=/some/path
1240
945This writes them regardless of the global logging level, because it is 1241This writes them regardless of the global logging level, because it is
946attached to the toplevel context, which receives all messages I<before> 1242attached to the toplevel context, which receives all messages I<before>
947the global filtering. 1243the global filtering.
948 1244
949 $AnyEvent::Log::COLLECT->attach ( 1245 $AnyEvent::Log::COLLECT->attach (
950 new AnyEvent::Log::Ctx log_to_file => $path); 1246 new AnyEvent::Log::Ctx log_to_file => $path);
951 1247
1248 PERL_ANYEVENT_LOG=%filelogger=file=/some/path:collect=+%filelogger
1249
952In both cases, messages are still written to STDERR. 1250In both cases, messages are still written to STDERR.
953 1251
954=item Write trace messages (only) from L<AnyEvent::Debug> to the default logging target(s). 1252=item Write trace messages (only) from L<AnyEvent::Debug> to the default logging target(s).
955 1253
956Attach the C<$AnyEvent::Log::LOG> context to the C<AnyEvent::Debug> 1254Attach the C<$AnyEvent::Log::LOG> context to the C<AnyEvent::Debug>
957context - this simply circumvents the global filtering for trace messages. 1255context - this simply circumvents the global filtering for trace messages.
958 1256
959 my $debug = AnyEvent::Debug->AnyEvent::Log::ctx; 1257 my $debug = AnyEvent::Debug->AnyEvent::Log::ctx;
960 $debug->attach ($AnyEvent::Log::LOG); 1258 $debug->attach ($AnyEvent::Log::LOG);
1259
1260 PERL_ANYEVENT_LOG=AnyEvent::Debug=+log
961 1261
962This of course works for any package, not just L<AnyEvent::Debug>, but 1262This of course works for any package, not just L<AnyEvent::Debug>, but
963assumes the log level for AnyEvent::Debug hasn't been changed from the 1263assumes the log level for AnyEvent::Debug hasn't been changed from the
964default. 1264default.
965 1265
969 1269
970 Marc Lehmann <schmorp@schmorp.de> 1270 Marc Lehmann <schmorp@schmorp.de>
971 http://home.schmorp.de/ 1271 http://home.schmorp.de/
972 1272
973=cut 1273=cut
1274

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines