本文整理汇总了PHP中ErrorHandler::add_error_in_log方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::add_error_in_log方法的具体用法?PHP ErrorHandler::add_error_in_log怎么用?PHP ErrorHandler::add_error_in_log使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ErrorHandler
的用法示例。
在下文中一共展示了ErrorHandler::add_error_in_log方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: generate
/**
* @desc Generates if possible the file and if errors occur, writes them in the log file
* without throwing any exception.
*/
public static function generate()
{
try {
self::try_to_generate();
} catch (IOException $ex) {
$lang = LangLoader::get('common', 'sitemap');
ErrorHandler::add_error_in_log($lang['sitemap_xml_could_not_been_written'], __FILE__, __LINE__);
}
}
示例2: update_htaccess_file
private static function update_htaccess_file()
{
$file = new File(PATH_TO_ROOT . '/.htaccess');
try {
$file->write(self::get_file_content());
$file->close();
} catch (IOException $ex) {
ErrorHandler::add_error_in_log('Couldn\'t write the .htaccess file. Please check the site root read authorizations.', '');
}
}
示例3: log
private function log()
{
$information_to_log = $this->exception->getMessage() . "\n" . $this->exception->getTraceAsString();
ErrorHandler::add_error_in_log($information_to_log, $this->exception->getFile(), $this->exception->getLine());
}
示例4: log
private function log()
{
ErrorHandler::add_error_in_log($this->exception->getMessage(), Debug::get_stacktrace_as_string(0, $this->exception), E_USER_ERROR);
}