mscherer 1 年之前
父节点
当前提交
b1999d0ef5
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 3 3
      docs/Error/ExcpetionTrap.md
  2. 1 1
      docs/README.md

+ 3 - 3
docs/Error/ExcpetionTrap.md

@@ -1,7 +1,7 @@
 # Improved version of ExceptionTrap
 
 The main goal of the error.log is to notify about internal errors of the system.
-By default there would also be a lot of noise in there.
+By default, there would also be a lot of noise in there.
 
 Most 404 logs should not be part of your error log, for example.
 You can either completely ignore them, or better yet put them into their own space:
@@ -19,11 +19,11 @@ logged twice (`config/app.php`):
 ```php
     'Log' => [
         'debug' => [
-            'scopes' => false,
+            'scopes' => null,
             ...
         ],
         'error' => [
-            'scopes' => false,
+            'scopes' => null,
             ...
         ],
     ],

+ 1 - 1
docs/README.md

@@ -15,7 +15,7 @@
 * [I18n](I18n/I18n.md) for language detection and switching
 
 ### ErrorHandler
-* [ErrorHandler](Error/ErrorHandler.md) for improved error handling.
+* [ExceptionTrap](Error/ExceptionTrap.md) for improved error handling.
 
 ### Email
 * [Email](Mailer/Email.md) for sending Emails