in reply to [OT?] Today's Debugging Story
Instead of commenting out code (you might forget to uncomment it), how about using a debugging constant?
BEGIN { require constant; constant->import( DEBUGGING => $ENV{DEBUGGING} ); } hide_console() unless (DEBUGGING);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: [OT?] Today's Debugging Story
by vek (Prior) on Nov 22, 2002 at 04:07 UTC | |
by Aristotle (Chancellor) on Nov 27, 2002 at 11:39 UTC | |
|
Re^2: [OT?] Today's Debugging Story
by Aristotle (Chancellor) on Nov 27, 2002 at 11:32 UTC |