mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 12:42:48 +08:00
1)修正notice 的拼写错误;2)英文的":"后面加了个空格;3)补全Log::send() 注释;4)删除Error.php 里重复的 key;5)添加 File Log 测试用例
This commit is contained in:
@@ -93,7 +93,7 @@ class Error
|
||||
{
|
||||
if ($errno & Config::get('exception_ignore_type')) {
|
||||
// 忽略的异常记录到日志
|
||||
Log::record("[{$errno}]{$errstr}[{$errfile}:{$errline}]", 'notic');
|
||||
Log::record("[{$errno}]{$errstr}[{$errfile}:{$errline}]", 'notice');
|
||||
} else {
|
||||
// 将错误信息托管至 think\exception\ErrorException
|
||||
throw new ErrorException($errno, $errstr, $errfile, $errline, $errcontext);
|
||||
@@ -268,8 +268,6 @@ class Error
|
||||
'DS' => defined('DS') ? DS : 'undefined',
|
||||
'__INFO__' => defined('__INFO__') ? __INFO__ : 'undefined',
|
||||
'__EXT__' => defined('__EXT__') ? __EXT__ : 'undefined',
|
||||
'__INFO__' => defined('__INFO__') ? __INFO__ : 'undefined',
|
||||
'__EXT__' => defined('__EXT__') ? __EXT__ : 'undefined',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user