NAME
Log::Fine::Handle::Console - Output messages to STDERR
or STDOUT
SYNOPSIS
Provides logging to either STDERR
or STDOUT
.
# Get a new logger
my $log = Log::Fine->logger("foo");
# Register a file handle
my $handle = Log::Fine::Handle::Console
->new( name => 'myname',
mask => LOGMASK_EMERG | LOGMASK_ALERT | LOGMASK_CRIT | LOGMASK_ERR | LOGMASK_WARNING | LOGMASK_NOTICE | LOGMASK_INFO,
use_stderr => undef );
# You can set logging to STDERR per preference
$handle->{use_stderr} = 1;
# Register the handle
$log->registerHandle($handle);
# Log something
$log->(INFO, "Opened new log handle");
DESCRIPTION
The console handle provides logging to the console, either via STDOUT
(default) or STDERR
.
METHODS
msgWrite
See "msgWrite" in Log::Fine::Handle
BUGS
Please report any bugs or feature requests to bug-log-fine at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Log-Fine. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Log::Fine
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
Search CPAN
AUTHOR
Christopher M. Fuhrman, <cfuhrman at pobox.com>
SEE ALSO
COPYRIGHT & LICENSE
Copyright (c) 2008, 2010, 2013 Christopher M. Fuhrman, All rights reserved.
This program is free software licensed under the...
The BSD License
The full text of the license can be found in the LICENSE file included with this module.