http://www.perlmonks.org?node_id=265834


in reply to Re: Re: IYHO, what do you consider good code?
in thread IYHO, what do you consider good code?

Make it an environment variable and it's even easier:

BEGIN { $ENV{DEBUG} = $ENV{DEBUG} ? 0 : 1; } use constant DEBUG => $ENV{DEBUG};

Update: Good points both responses, though I'm slightly happier with the BEGIN block from a maintenance standpoint.

Replies are listed 'Best First'.
Re: Re: Re: Re: IYHO, what do you consider good code?
by diotalevi (Canon) on Jun 13, 2003 at 23:57 UTC

    Make it a more specific environment variable and you're golden. Alzabo respects the ALZABO_DEBUG environment variable, your modules could do something similar.

Re: Re: Re: Re: IYHO, what do you consider good code?
by Juerd (Abbot) on Jun 19, 2003 at 09:13 UTC

    BEGIN { $ENV{DEBUG} = $ENV{DEBUG} ? 0 : 1; } use constant DEBUG => $ENV{DEBUG};

    Why the BEGIN block?

    use constant DEBUG => !!$ENV{DEBUG};

    Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }