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