lithium\analysis\Logger::__callStatic()
Acts as a proxy for the write() method, allowing log message priority names to be called as
methods, i.e.:
Logger::emergency('Something bad happened.');
// This is equivalent to Logger::write('emergency', 'Something bad happened')
Parameters
-
string
$priorityThe name of the method called on the
Loggerclass. This should map to a log type. -
array
$paramsAn array of parameters passed in the method.
Returns
booleanReturns true or false, depending on the success of the write() method.
Source
public static function __callStatic($priority, $params) {
$params += array(null, array());
return static::write($priority, $params[0], $params[1]);
}