]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/T/logconstants.php
- Nuevas constantes de logging compatibles con las de python (CRITICAL, ERROR,
[software/sercom-old.git] / src / T / logconstants.php
index ba1706f4b4bfcd038469740ce9c11b5ac3bd6ab1..250899796eb7941d8e7305369a7f14901d044d24 100644 (file)
@@ -1,12 +1,10 @@
 <?php // vim: set binary noeol et sw=4 sts=4:
 
-define('L_NON', 0);
-define('L_CRI', 1);
-define('L_ERR', 1 << 1);
-define('L_WRN', 1 << 2);
-define('L_INF', 1 << 3);
-define('L_DBG', 1 << 4 );
-define('L_ALL', 0xFFFF);
-#define('L_', );
+// Constantes
+define('CRITICAL',  1);
+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