Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision ee71d315

Von Moritz Bunkus vor mehr als 11 Jahren hinzugefügt

  • ID ee71d3153423b1008bcfcf861dcea48fe056a618
  • Vorgänger 3aef41d7
  • Nachfolger 620cb63e

Stacktrace an Exception anhängen (über Konfigurationssetting einschaltbar)

Unterschiede anzeigen:

SL/Dispatcher.pm
16 16
  unshift @INC, $exe_dir;
17 17
}
18 18

  
19
use Carp;
19 20
use CGI qw( -no_xhtml);
20 21
use Config::Std;
21 22
use DateTime;
......
128 129
    $::lxdebug->warn(@_);
129 130
  };
130 131

  
132
  $SIG{__DIE__} = sub { Carp::confess( @_ ) } if $::lx_office_conf{debug}->{backtrace_on_die};
133

  
131 134
  $self->_cache_file_modification_times;
132 135
}
133 136

  
config/kivitendo.conf.default
301 301
# be made unique by appending a random GET parameter. This will cause
302 302
# the web browser to always reload the resources.
303 303
auto_reload_resources = 0
304

  
305
# If set to 1 each exception will include a full stack backtrace.
306
backtrace_on_die = 0

Auch abrufbar als: Unified diff