Browse Source

Update ErrorHandler.md

Mark Sch 6 years ago
parent
commit
f5a5c617d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/Error/ErrorHandler.md

+ 1 - 1
docs/Error/ErrorHandler.md

@@ -7,7 +7,7 @@ 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:
 You can either completely ignore them, or better yet put them into their own space:
 ```php
 ```php
 Log::config('404', [
 Log::config('404', [
-	'className' => 'DatabaseLog.Database',
+	'className' => '...', // e.g. 'File' or 'DatabaseLog.Database'
 	'type' => '404',
 	'type' => '404',
 	'levels' => ['error'],
 	'levels' => ['error'],
 	'scopes' => ['404'],
 	'scopes' => ['404'],