| Module-New documentation | Contained in the Module-New distribution. |
Module::New::Log
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Module-New documentation | Contained in the Module-New distribution. |
package Module::New::Log; use strict; use warnings; use Log::Dump; use Module::New::Meta; methods { log => sub { shift; __PACKAGE__->log(@_) }, logger => sub { shift; __PACKAGE__->logger(@_) }, logfile => sub { shift; __PACKAGE__->logfile(@_) }, logfilter => sub { shift; __PACKAGE__->logfilter(@_) }, }; 1; __END__