spider/perl/Log/Agent.pm

29 lines
295 B
Perl
Raw Normal View History

2003-01-21 10:54:20 +00:00
#
# Dummy Log Agent
#
# This is just for the benefit of Storable on 5.8.0
#
# Copyright (c) Dirk Koopman
#
2007-06-24 01:17:43 +00:00
#
2003-01-21 10:54:20 +00:00
#
package Log::Agent;
use DXDebug;
$VERSION = 0.3;
@ISA = qw(Exporter);
@EXPORT = qw(logcroak logcarp);
sub logcroak
{
DXDebug::croak(@_);
}
sub logcarp
{
DXDebug::carp(@_);
}
1;