The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tie::Log4perl

DESCRIPTION

Tie a filehandle so that whatever is printed to it is instead logged via Log4perl, as recommended by Log::Log4Perl::FAQ, except that using the filehandle you tie as an appender will not cause infinite recursion.

SYNOPSIS

    tie *STDERR, 'Tie::Log4perl';

    # This will be logged, instead
    warn "Parbleu, an error!\n";

OPTIONS

The following options may be passed to tie after the class name either as a list or as a hash reference.

level

The level to log at. Defaults to $Log::Log4perl::Level::Debug.

logger

The logger category object log with. Optional.

prefix

An optional string to prefix to messages.

AUTHOR

Paul Driver <frodwith@cpan.org>

COPYRIGHT AND LICENCE

Copyright (C) 2009 Paul Driver

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.