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:
7ea7a6f
)
Merge von 554 aus stable: Fix fuer altere Perl-Versionen (5.6.x), die wohl die Block...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 27 Sep 2005 06:23:55 +0000
(06:23 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 27 Sep 2005 06:23:55 +0000
(06:23 +0000)
SL/LXDebug.pm
patch
|
blob
|
history
diff --git
a/SL/LXDebug.pm
b/SL/LXDebug.pm
index
ac7c577
..
c3a5a64
100644
(file)
--- a/
SL/LXDebug.pm
+++ b/
SL/LXDebug.pm
@@
-1,13
+1,12
@@
package LXDebug;
-use constant {
- NONE => 0,
- INFO => 1,
- DEBUG1 => 2,
- DEBUG2 => 3,
-
- FILE_TARGET => 0,
- STDERR_TARGET => 1 };
+use constant NONE => 0;
+use constant INFO => 1;
+use constant DEBUG1 => 2;
+use constant DEBUG2 => 3;
+
+use constant FILE_TARGET => 0;
+use constant STDERR_TARGET => 1;
use POSIX qw(strftime);