in reply to Re^2: Log4perl & warn
in thread Log4perl & warn
In Mylog.pm:
And in t.pl:package Mylog; use base qw(Exporter); our @EXPORT_OK=qw(warn test); sub warn{ print "My warn ", @_, "\n"; } 1;
Running t.pl, I then get:#!/usr/bin/perl package main; use strict; use warnings; use Mylog qw/warn/; warn("just a test... - warn\n");
I cant really help you out much more unless you show me the contents of your Mylog.pm file. I'm guessing the problem is somehow in there.... gc[skaark@dhcp-253-59 ~]$ perl t.pl My warn just a test... - warn
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Log4perl & warn
by Anonymous Monk on Sep 16, 2005 at 16:51 UTC |