Leser: 1
7 Einträge, 1 Seite |
1
2
3
4
5
6
7
our $cycle = 'devel'; ## 'prod'; ## => production
if ( $cycle eq 'devel' ) {
use CGI::Carp qw(fatalsToBrowser); ## Output errors/warnings directly to browser only in 'development' stage!
use warnings;
use strict;
}
Struppi+2008-02-01 11:07:19--dito. use strict und warnings (ich benutze -w) sind immer an.
1
2
3
4
5
6
7
use CGI::Carp::DebugScreen; ## WAS: use CGI::Carp qw(fatalsToBrowser);
our $cycle = 'devel'; ## 'prod'; ## => production
our $debug= 0;
if ( $cycle eq 'devel' ) { $debug = 1; }
CGI::Carp::DebugScreen->debug( $debug );
require 'config/debug.inc';
7 Einträge, 1 Seite |