Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re: debugging /logging help

by marius (Hermit)
on Dec 07, 2000 at 00:56 UTC ( [id://45315]=note: print w/replies, xml ) Need Help??


in reply to Re: debugging /logging help
in thread debugging /logging help

why not check your if $verbose value within your subroutine? That way you spend less time sprinkling "if $verbose" throughout your program.. Granted, my method is slightly less effecient, but you could change your sub to:
sub debug_info { return(0) unless $verbose; print join ':', "\n*", @_; print "\n"; return 1; }


-marius

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2024-04-19 01:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found