add Agent
authorminima <minima>
Tue, 21 Jan 2003 10:54:20 +0000 (10:54 +0000)
committerminima <minima>
Tue, 21 Jan 2003 10:54:20 +0000 (10:54 +0000)
perl/Log/Agent.pm [new file with mode: 0644]

diff --git a/perl/Log/Agent.pm b/perl/Log/Agent.pm
new file mode 100644 (file)
index 0000000..7af5bb9
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# Dummy Log Agent
+#
+# This is just for the benefit of Storable on 5.8.0
+#
+# Copyright (c) Dirk Koopman
+#
+# $Id$
+#
+
+package Log::Agent;
+
+use DXDebug;
+
+$VERSION = 0.3;
+@ISA = qw(Exporter);
+@EXPORT = qw(logcroak logcarp);
+
+sub logcroak
+{
+       DXDebug::croak(@_);
+}
+
+sub logcarp
+{
+       DXDebug::carp(@_);
+}
+1;