| Apache-DebugLog documentation | view source | Contained in the Apache-DebugLog distribution. |
Apache::DebugLog - Multidimensional debug logging in mod_perl 1.x
use Apache ();
use Apache::DebugLog ();
use Apache::Constants qw(OK);
sub handler {
my $r = shift;
# ...
$r->log_debug('foo', 3, 'Some level three debug relating to "foo"');
# ...
$r->log_debugf('bar', 9, 'Esoteric debug concerning %s', $x);
# ...
return OK;
}
Adds $r->log_debug to the mod_perl request object. The first argument is the domain or category to log, the second is the verbosity level. The last is a list of strings to pass into error log.
Adds log_debugf to the mod_perl request object. Same as above, but the last arguments are passed the same as one would to sprintf.
dorian taylor, <dorian@cpan.org>
Please report any bugs or feature requests to
bug-apache-debuglog@rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Apache-DebugLog.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
Copyright 2005 dorian taylor, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Apache-DebugLog documentation | view source | Contained in the Apache-DebugLog distribution. |