Commit c5b063d4 by 王召彬

ExceptionData第50行加了括号

parent a0c1babd
......@@ -47,7 +47,7 @@ class ExceptionData
//获取调用堆栈信息
$info = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS,1)[0];
//将此次异常信息入站
array_unshift($data['path'],'Service:'.APP_NAME.' file:'.$info['file'].$info['line']);
array_unshift($data['path'],'Service:'.APP_NAME.' file:'.$info['file'].'('.$info['line'].')');
return ['msg' => json_encode($data), 'code' => $data['code']];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment