From 186e1b7af9808621d7360850f93eab3b996ecef6 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Wed, 2 Mar 2005 00:39:42 +0000 Subject: [PATCH] Bugfix en constantes de logging. --- src/T/logconstants.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/T/logconstants.php b/src/T/logconstants.php index 2508997..db86236 100644 --- a/src/T/logconstants.php +++ b/src/T/logconstants.php @@ -2,9 +2,9 @@ // Constantes define('CRITICAL', 1); -define('ERROR', CRITICAL + 1 << 1); -define('WARNING', ERROR + 1 << 2); -define('INFO', WARNING + 1 << 3); -define('DEBUG', INFO + 1 << 4 ); +define('ERROR', CRITICAL | (1 << 1)); +define('WARNING', ERROR | (1 << 2)); +define('INFO', WARNING | (1 << 3)); +define('DEBUG', INFO | (1 << 4 )); ?> \ No newline at end of file -- 2.43.0