当前位置: 首页>>代码示例>>PHP>>正文


PHP ErrorHandler::add_error_in_log方法代码示例

本文整理汇总了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__);
     }
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:13,代码来源:SitemapXMLFileService.class.php

示例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.', '');
     }
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:10,代码来源:HtaccessFileCache.class.php

示例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());
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:5,代码来源:RawExceptionHandler.class.php

示例4: log

 private function log()
 {
     ErrorHandler::add_error_in_log($this->exception->getMessage(), Debug::get_stacktrace_as_string(0, $this->exception), E_USER_ERROR);
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:4,代码来源:ExceptionHandler.class.php


注:本文中的ErrorHandler::add_error_in_log方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。