本文整理匯總了PHP中JLog::addEntry方法的典型用法代碼示例。如果您正苦於以下問題:PHP JLog::addEntry方法的具體用法?PHP JLog::addEntry怎麽用?PHP JLog::addEntry使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類JLog
的用法示例。
在下文中一共展示了JLog::addEntry方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: log
/**
* Logs an entry
*
* @param array|string $entry
* @see JLog::addEntry options
* @return mixed
*/
public function log($entry, $level = LOG_LEVEL_INFO)
{
if (!is_array($entry)) {
$entry = array('comment' => $entry, 'level' => $level);
}
$this->_log->addEntry($entry);
return $this;
}
示例2: fatal
/**
* Send a Fatal message to the log
*
* @param string $message The message for the log
* @param Exception $throwable The Exception for the log
*/
public function fatal($message, $throwable = null)
{
if (!$this->isLevelEnabled(RokCommon_Logger::FATAL)) {
return;
}
$errorlog = array();
$errorlog['level'] = 'FATAL';
$errorlog['comment'] = $message;
$this->instance->addEntry($errorlog);
}