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

NAME

WebService::Cath::FuncNet::Logable

SYNOPSIS

Provides logging functionality as a Moose Role

    package WebService::Cath::FuncNet::NewClass;

    use Moose;

    with 'WebService::Cath::FuncNet::Logable';
    
    sub do_something {
        $self = shift;
        $self->debug('debug');
        $self->info('info');
    }

SEE ALSO

Log::Log4perl, MooseX::Log::Log4perl::Easy

AUTHOR

Ian Sillitoe <sillitoe@biochem.ucl.ac.uk>

LICENCE AND COPYRIGHT

Copyright (c) 2008, Ian Sillitoe <sillitoe@biochem.ucl.ac.uk>. All rights reserved.

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