mscherer 1 year ago
parent
commit
b1999d0ef5
2 changed files with 4 additions and 4 deletions
  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