|
NAMEEvent::RPC::Logger - Logging facility for Event::RPC SYNOPSIS use Event::RPC::Server;
use Event::RPC::Logger;
my $server = Event::RPC::Server->new (
...
logger => Event::RPC::Logger->new(
filename => "/var/log/myserver.log",
fh_lref => [ $fh, $sock ],
min_level => 2,
),
...
);
$server->start;
DESCRIPTIONThis modules implements a simple logging facility for the Event::RPC framework. Log messages may be written to a specific file and/or a bunch of filehandles, which may be sockets as well. CONFIGURATION OPTIONSThis is a list of options you can pass to the new() constructor: METHODS
AUTHORSJörn Reder <joern at zyn dot de> COPYRIGHT AND LICENSECopyright (C) 2002-2006 by Joern Reder, All Rights Reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. POD ERRORSHey! The above document had some coding errors, which are explained below:
|