Disable warnings from specific module



Hi,

I'm using a module with a couple of experimental features (SOAP::Lite)
and, every time these features are used, a warning message is
outputted. I would like to know how can I simply disable these outputs
while keeping warnings for my code?

use strict;
use warnings;

use SOAP::Lite;

[...]

Thanks in advance,
Sérgio Nunes

.



Relevant Pages

  • Re: Getting warning message while running the following code
    ... The warning message is as Useless use of string in void context at ... use strict; ... use warnings; ... use Cwd 'abs_path'; ...
    (perl.beginners)
  • Re: Disable warnings from specific module
    ... I'm using a module with a couple of experimental features ... and, every time these features are used, a warning message is ... while keeping warnings for my code? ... use strict; ...
    (comp.lang.perl.misc)
  • Re: Sharing variables between modules
    ... use strict; ... use warnings; ... # Note that this must also come *before* the use Foo line. ... package Foo; ...
    (comp.lang.perl.misc)
  • Re: Dynamic directory handles?
    ... > 1) You should always enable warnings (and strict) when ... > perldoc -q filehandle ... >> sub dircount { ... > use warnings; ...
    (comp.lang.perl.misc)
  • Re: Debug Help Please
    ... If you had enabled the warnings and strict pragmas then perl would have ... foreach my $logfile { ...
    (perl.beginners)