X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fperl%2FLog.pm;h=6b1fa1fcac986554a05ea30b7d6d8476fae6206a;hb=d60ede19ab84382101d313e3185b1a0ef6714088;hp=68b1d3724cb181c70623088c5776e117b67d2e6b;hpb=997658b144998f1ab23b8d2c64bdc3ca93bae2c0;p=libucw.git diff --git a/lib/perl/Log.pm b/lib/perl/Log.pm index 68b1d372..6b1fa1fc 100644 --- a/lib/perl/Log.pm +++ b/lib/perl/Log.pm @@ -4,12 +4,19 @@ # (c) 2007 Pavel Charvat # -package Sherlock::Log; +package UCW::Log; use lib 'lib/perl5'; use strict; use warnings; use POSIX; +use Exporter; + +our $version = 1.0; +our @ISA = qw(Exporter); +our @EXPORT = (); +our %EXPORT_TAGS = ( all => [qw(&Log &Die)]); +our @EXPORT_OK = (@{$EXPORT_TAGS{'all'}}); my $Prog = (reverse split(/\//, $0))[0];