projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53a78cc
)
$::lxdebug->backtrace_on_error auch im force mode anzeigen
author
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 13 Jan 2014 12:24:03 +0000
(13:24 +0100)
committer
Sven Schöling
<s.schoeling@linet-services.de>
Mon, 13 Jan 2014 12:24:03 +0000
(13:24 +0100)
SL/LXDebug.pm
patch
|
blob
|
history
diff --git
a/SL/LXDebug.pm
b/SL/LXDebug.pm
index
d32f458
..
80b41f9
100644
(file)
--- a/
SL/LXDebug.pm
+++ b/
SL/LXDebug.pm
@@
-129,10
+129,10
@@
sub show_backtrace {
return 1 unless ($force || ($global_level & BACKTRACE_ON_ERROR));
- $self->message(
BACKTRACE_ON_ERROR
, "Starting full caller dump:");
+ $self->message(
0
, "Starting full caller dump:");
my $level = 0;
while (my ($dummy, $filename, $line, $subroutine) = caller $level) {
- $self->message(
BACKTRACE_ON_ERROR
, " ${subroutine} from ${filename}:${line}");
+ $self->message(
0
, " ${subroutine} from ${filename}:${line}");
$level++;
}