Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: Loading a module at runtime

by Anonymous Monk
on May 05, 2011 at 02:46 UTC ( [id://903046]=note: print w/replies, xml ) Need Help??


in reply to Re: Loading a module at runtime
in thread Loading a module at runtime

Just an FYI, this is how I finally got it working:
if ($DEBUG) { eval "use SOAP::Lite; SOAP::Lite->import(+trace => 'debug');"; } else { eval "use SOAP::Lite;"; }

Replies are listed 'Best First'.
Re^3: Loading a module at runtime
by Anonymous Monk on May 05, 2011 at 03:22 UTC
    use SOAP::Lite; use if $DEBUG, qw[ SOAP::Lite +trace debug ];

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://903046]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-26 09:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found