RWDE::Logging - RWDE::Logging documentation
Index
Code Index:
RWDE::Logging

syslog_msg()
debug_info()
is_debug()
package RWDE::Logging;
use strict;
use warnings;
use RWDE::Logger;
use vars qw($VERSION);
$VERSION = sprintf "%d", q$Revision: 507 $ =~ /(\d+)/;
sub syslog_msg {
my ($self, $type, $info) = @_;
return RWDE::Logger->syslog_msg($type, $info);
}
sub debug_info {
my ($self, $type, $info) = @_;
return RWDE::Logger->debug_info($type, $info);
}
sub is_debug {
return RWDE::Logger->is_debug;
}
1;