Skip to content

Commit

Permalink
调整日志相关
Browse files Browse the repository at this point in the history
  • Loading branch information
chaz6chez committed Feb 8, 2024
1 parent ab63e42 commit 9167e0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/plugin/workbunny/webman-rqueue/log.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[
'class' => Monolog\Handler\RotatingFileHandler::class,
'constructor' => [
runtime_path() . '/logs/workbunny/webman-rqueue/warning.log',
\runtime_path() . '/logs/workbunny/webman-rqueue/warning.log',
10, //$maxFiles
Monolog\Logger::WARNING,
],
Expand All @@ -22,7 +22,7 @@
[
'class' => Monolog\Handler\RotatingFileHandler::class,
'constructor' => [
runtime_path() . '/logs/workbunny/webman-rqueue/notice.log',
\runtime_path() . '/logs/workbunny/webman-rqueue/notice.log',
10, //$maxFiles
Monolog\Logger::NOTICE,
],
Expand All @@ -38,7 +38,7 @@
[
'class' => Monolog\Handler\RotatingFileHandler::class,
'constructor' => [
runtime_path() . '/logs/workbunny/webman-rqueue/debug.log',
\runtime_path() . '/logs/workbunny/webman-rqueue/debug.log',
10, //$maxFiles
Monolog\Logger::DEBUG,
],
Expand Down

0 comments on commit 9167e0d

Please sign in to comment.