关于Debug::EchoMessage module

关于Debug::EchoMessage module

安装Oracle::Loader时,
make test时,提示
"set_param" is not exported by the Debug::EchoMessage module

[Copy to clipboard] [ - ]
CODE:
[root@localhost Oracle-Loader-1.11]# make test
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/Loader.t
[color=Red]t/Loader...."set_param" is not exported by the Debug::EchoMessage module[/color]
Can't continue after import errors at /home/oracle/Oracle-Loader-1.11/blib/lib/Oracle/Loader.pm line 9
BEGIN failed--compilation aborted at /home/oracle/Oracle-Loader-1.11/blib/lib/Oracle/Loader.pm line 9.
Compilation failed in require at t/Loader.t line 9.
BEGIN failed--compilation aborted at t/Loader.t line 9.
# Looks like your test died before it could output anything.
t/Loader....dubious
        Test returned status 255 (wstat 65280, 0xff00)
FAILED--1 test script could be run, alas--no output ever seen
make: *** [test_dynamic] Error 2

Debug::EchoMessage已经安装,最新版本是Debug-EchoMessage-1.03

看了EchoMessage.pm文件,里面根本就没有set_param的定义.
这要怎么办呢?

[Copy to clipboard] [ - ]
CODE:
# require Exporter;
@ISA = qw(Exporter);
our @EXPORT = qw(echoMSG debug disp_param);
[color=Red]our @EXPORT_OK = qw(debug echoMSG disp_param start_log end_log
    );[/color]
our %EXPORT_TAGS = (
  all      => [@EXPORT_OK],
  echo_msg => [qw(debug echoMSG disp_param)],
  log      => [qw(start_log end_log)],
);
$Debug::EchoMessage::VERSION = 1.03;

http://search.cpan.org/src/GEOTI ... 1.03/EchoMessage.pm

小顶一下