Made Loggging::warn proper.

This commit is contained in:
Rudi Grinberg 2012-09-11 14:34:03 -04:00
parent 57b59a3290
commit 6c1d7fedc1
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ class Logging {
$function = $caller['function'];
$logger = self::getLogger();
$logger->info("[$file : $function() : line $line] [WARN] - ".self::toString($p_msg));
$logger->warn("[$file : $function() : line $line] - "
. self::toString($p_msg));
}
public static function debug($p_msg)