We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 135018f commit 7f042dbCopy full SHA for 7f042db
README.md
@@ -33,7 +33,16 @@ The level variable defines the minimum log level at which log messages are sent
33
Usage
34
-----
35
36
-To monitor exceptions, simply use the `Log` facade:
+To automatically monitor exceptions, simply use the `Log` facade in your error handler in `app/Exceptions/Handler.php`:
37
+
38
+ public function report(Exception $e)
39
+ {
40
+ Log::error($e);
41
42
+ return parent::report($e);
43
+ }
44
45
+For Laravel 4 installations, this is located in `app/start/global.php`:
46
47
App::error(function(Exception $exception, $code)
48
{
0 commit comments