The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Apache::DebugLog::Config - Multidimensional debug logging in mod_perl

VERSION

Version 0.02

SYNOPSIS

    # httpd.conf

    # without this, you won't see a thing. ;)
    LogLevel debug

    # load new configuration directives via mod_perl 2
    <IfModule mod_perl2.c>
    # presumably these use Apache2::DebugLog
    PerlLoadModule My::Module
    PerlLoadModule My::SecondModule
    PerlLoadModule My::ThirdModule
    </IfModule>

    # load new configuration directives via mod_perl 1
    <IfModule mod_perl.c>
    # presumably these use Apache::DebugLog
    PerlModule My::Module
    PerlModule My::SecondModule
    PerlModule My::ThirdModule
    </IfModule>

    # set the default log domain and range
    PerlDebugLogDomain  foo bar bitz
    PerlDebugLogLevel   3

    <Location /some_place>
    # enable all debugging categories
    PerlDebugLogDomain *
    SetHandler perl-script
    PerlHandler My::Module
    </Location>

    <Location /some_other_place>
    # raise debug log level
    PerlDebugLogLevel 9
    PerlAccessHandler My::SecondModule
    </Location>

    <Location /third_place>
    # shut this guy up
    PerlDebugLogLevel 0
    PerlTypeHandler My::ThirdModule
    </Location>

DEBUGGING

something about using this module for debugging

AUTHOR

dorian taylor, <dorian@cpan.org>

BUGS

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 & LICENSE

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.