RWDE::Logging - RWDE::Logging documentation


RWDE documentation Contained in the RWDE distribution.

Index


Code Index:

RWDE::Logging

Top

syslog_msg()

debug_info()

is_debug()


RWDE documentation Contained in the RWDE distribution.
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;