X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/5174fa9bd71e4f671d9788707e106296638a3c63..5fbd64ffbcf2259aed83351dcf00ee47a75ff931:/src/T/logconstants.php?ds=sidebyside 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