mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-17 19:23:26 +00:00
不记录身份失败的日志
This commit is contained in:
parent
e5eb2889e3
commit
dba6f70dbb
@ -67,7 +67,13 @@ class Handler extends ExceptionHandler
|
|||||||
public function report(Throwable $e)
|
public function report(Throwable $e)
|
||||||
{
|
{
|
||||||
if ($e instanceof ApiException) {
|
if ($e instanceof ApiException) {
|
||||||
Log::error($e->getMessage(), ['exception' => ' at ' . $e->getFile() .':' . $e->getLine()]);
|
if ($e->getCode() !== -1) {
|
||||||
|
Log::error($e->getMessage(), [
|
||||||
|
'code' => $e->getCode(),
|
||||||
|
'data' => $e->getData(),
|
||||||
|
'exception' => ' at ' . $e->getFile() . ':' . $e->getLine()
|
||||||
|
]);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
parent::report($e);
|
parent::report($e);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user