Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Tracking down "uninitialized value" errs

by Abigail-II (Bishop)
on Jul 30, 2003 at 09:00 UTC ( [id://279121]=note: print w/replies, xml ) Need Help??


in reply to Tracking down "uninitialized value" errs

You could use a WARN handler. Something like:
$SIG {__WARN__} = sub { require "Carp.pm"; Carp::cluck @_; }

This will give you a stack trace of from where the warning occurred.

Abigail

Replies are listed 'Best First'.
Re: Re: Tracking down "uninitialized value" errs
by jest (Pilgrim) on Jul 30, 2003 at 09:25 UTC

    Thank you so much! This led me right to the problem, if rather verbosely.

    It turns out that whilst streamlining my code, I made incorrect use of a hash slice that brought in more values--some of which were undef--than I had intended; these had no effect on the display but generated errors.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-20 01:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found