Depending on your needs, it may be better to use the global variable
$main::DEBUG directly rather than a stored local copy such as
$self->{DEBUG}. The reason is you might want to
localise
$main::DEBUG.
That is, if package Deb prints reams of debugging information when $main::DEBUG is set, you might find it useful in debugging to say
package Deb;
sub frob {
# do stuff...
print_debugging_info if $main::DEBUG;
# do more stuff...
}
# ...
package main;
$::DEBUG = undef; # usually don't want debugging information
my $deb1 = new Deb (...);
my $deb2 = new Deb (...);
# do stuff with $deb1, $deb2, but no debugging information
{
local $::DEBUG = 1; # buggy bit
$deb1->frob(42);
$deb2->nitz(17);
}
# no more debugging output
# ...
local is usually a very good match for various logs.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.