Files
im/config/plugin/webman/log/app.php
T
commie c153975eed 7
2026-01-08 05:42:44 +08:00

23 lines
427 B
PHP
Executable File

<?php
return [
'enable' => true,
'exception' => [
// 是否记录异常到日志
'enable' => true,
// 不会记录到日志的异常类
'dontReport' => [
support\exception\BusinessException::class
]
],
'dontReport' => [
'app' => [
],
'controller' => [
],
'action' => [
],
'path' => [
]
]
];