]> git.llucax.com Git - software/sercom-old.git/commitdiff
Bugfix en niveles de log.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 5 Mar 2005 21:14:43 +0000 (21:14 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 5 Mar 2005 21:14:43 +0000 (21:14 +0000)
src/T/general.php
src/T/log.php

index d4ce5ed98d3410a19a426bfe55110d7a25c50b26..22d6ab780a9f3527703d295431d149dd2cf586a8 100644 (file)
@@ -100,6 +100,6 @@ require_once 'T/Intento.php';
 
 unset($gconf);
 
-logs("Iniciando {$argv[0]}...");
+logs('Iniciado');
 
 ?>
\ No newline at end of file
index e7c5c2d4f4853146d6ed788b4daa1abce0247ed4..7941f63751e615a473ebef51b18fa915fc96387e 100644 (file)
@@ -14,7 +14,7 @@ function logsdie($str, $level = CRITICAL) {
 
 function logs($str, $level = INFO) {
     global $LOGLEVEL, $LOGFP, $argv;
-    if ($str and $LOGLEVEL & $level) {
+    if ($str and ($LOGLEVEL & $level) == $level) {
         fputs($LOGFP, sprintf("%s %s[%d] %-8s %s\n", strftime('%c'),
                 basename($argv[0]), getmypid(), loglevel2str($level), $str));
     }