Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

RE: (jcwren) Re: (2) Tying events to perl warnings and errors

by reptile (Monk)
on Sep 14, 2000 at 00:23 UTC ( [id://32355]=note: print w/replies, xml ) Need Help??


in reply to (jcwren) Re: (2) Tying events to perl warnings and errors
in thread Tying events to perl warnings and errors

Localize the handler with a closure, like this:

sub foo { my ($a, $b, $c) = @_; my %hash = (a => {b => {c => 0}}); # whatever other variables you want to initialize local $SIG{__WARN__} = sub { # dump those variables here }; print $hash{$a}->{$b}->{$c}; # ... }

The variables you want to dump will be in scope of the __WARN__ handler and you can do whatever you like with them.

local $_ = "0A72656B636148206C72655020726568746F6E41207473754A"; while(s/..$//) { print chr(hex($&)) }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-03-28 15:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found