hi,

Using this:

use warnings; use strict; use Getopt::Long; # global variables my $warning = 90; my $critical = 30; my $version = 1; my $help = 0; my $host; my $revision; my $debug = undef; my $tag; Getopt::Long::Configure( "no_ignore_case", "bundling" ); GetOptions( 'H|host=s' => \$host, 't|tag=s' => \$tag, 'h|help|?' => \$help, 'v|verbose' => \$debug, 'V|version' => \$revision, 'w|warning=i' => \$warning, 'c|critical=i' => \$critical, ); if ( defined $debug ) { use SOAP::Lite +trace => "debug"; } else { use SOAP::Lite; }
When I run it like this:
./code -H localhost
it should not use the SOAP::Lite library with debugging enabled, but it does. I do not understand why. If I remove the if/else loop and just insert a use SOAP::Lite statement it works without debugging, but I would very much prefer to have the choice as a cli option, this script will be used by people who do not know how to debug Perl or any other programming language.

Any clue greatly appreciated. update: I also tried using

my $debug = undef;
but still no change

update 2: thank you for your (very) fast replies. I understand it now and it works great with the import suggestion. I learnt something today :-)


In reply to defined weirdness by natxo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.