Skip to content

Commit 7f042db

Browse files
committed
Improve installation instructions #9
1 parent 135018f commit 7f042db

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,16 @@ The level variable defines the minimum log level at which log messages are sent
3333
Usage
3434
-----
3535

36-
To monitor exceptions, simply use the `Log` facade:
36+
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`:
3746

3847
App::error(function(Exception $exception, $code)
3948
{

0 commit comments

Comments
 (0)