tylercd100 / lern
LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will record exceptions into a database and will notify you via Email, Pushover or Slack.
Installs: 150 492
Dependents: 4
Suggesters: 0
Security: 0
Stars: 441
Watchers: 13
Forks: 37
Open Issues: 10
Type:laravel-package
Requires
- php: ^7.2|^8.0
- illuminate/support: ^6.0|^7.0|^8.0
- monolog/monolog: ^2.0
- tylercd100/laravel-notify: ^4.0
Requires (Dev)
- doctrine/dbal: ^2.6|^3.0
- mockery/mockery: ~1.3.3|^1.4.2
- orchestra/testbench: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.4|^9.3.3
- dev-master
- 6.0.0
- 5.0.0
- 4.5.1
- 4.5.0
- 4.4.0
- 4.3.0
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.1
- 4.1.0
- 4.0.0
- 3.8.2
- 3.8.1
- 3.8.0
- 3.7.5
- 3.7.4
- 3.7.3
- 3.7.2
- 3.7.1
- 3.7.0
- 3.6.6
- 3.6.5
- 3.6.4
- 3.6.3
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.2
- 3.0.1
- 3.0.0
- 2.3.0
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 2.0.0-beta
- 1.1.0
- 1.0.0
- dev-local
- dev-tylercd100-patch-4
- dev-tylercd100-patch-3
- dev-fix/56
- dev-fix/view-render-in-console
- dev-issue/61
- dev-set-and-get-log-level
- dev-tylercd100-patch-2
- dev-tylercd100-patch-1
- dev-3.x-to-4.x-readme-additions
- dev-fix-auto-discovery
- dev-additional-fields
- dev-5.1-support
- dev-version-4
This package is auto-updated.
Last update: 2024-10-17 14:52:16 UTC
README
LERN from your mistakes
LERN is a Laravel 5 package that will record exceptions into a database and will send you a notification.
Currently supported notification channels via Monolog
- Pushover
- Slack
- Fleephook
- Flowdock
- Plivo an SMS messaging service.
- Twilio an SMS messaging service.
- Sentry via Sentry SDK for PHP
- Mailgun
Version Compatibility
Migrating from 3.x
to 4.x
Make sure that the config file now includes the new lern.notify.class
and lern.record.class
settings. Check the config file to see how they are used.
Migrating from 2.x
to 3.x
Version 3.x introduces the ability to collect more information from the error such as the user_id, url, method, and input data. In order to use 3.x you will need to copy over the new config file, the migration file and then migrate it.
# This will only copy over the migration file. For the config file you can either include the --force flag (Which will overwrite it) or copy it manually from github php artisan vendor:publish --provider="Tylercd100\LERN\LERNServiceProvider" php artisan migrate
Installation
Version 4.x uses Package Discovery. If you are using 3.x you will need to follow these instructions.
Install via composer - In the terminal:
composer require tylercd100/lern
Then you will need to run these commands in the terminal in order to copy the config and migration files
php artisan vendor:publish --provider="Tylercd100\LERN\LERNServiceProvider"
Before you run the migration you may want to take a look at config/lern.php
and change the table
property to a table name that you would like to use. After that run the migration
php artisan migrate
Usage
To use LERN modify the report method in the app/Exceptions/Handler.php
file
public function report(Throwable $e) { if ($this->shouldReport($e)) { //Check to see if LERN is installed otherwise you will not get an exception. if (app()->bound("lern")) { app()->make("lern")->handle($e); //Record and Notify the Exception /* OR... app()->make("lern")->record($e); //Record the Exception to the database app()->make("lern")->notify($e); //Notify the Exception */ } } return parent::report($e); }
Dont forget to add this to the top of the file
//If you updated your aliases array in "config/app.php" use LERN; use Throwable; //or if you didnt... use Tylercd100\LERN\Facades\LERN; use Throwable;
Recording
You can call LERN::record($exception);
to record an Exception to the database.
To query any Exception that has been recorded you can use ExceptionModel
which is an Eloquent Model
use Tylercd100\LERN\Models\ExceptionModel; $mostRecentException = ExceptionModel::orderBy('created_at','DESC')->first();
To change what is recorded in to the database take a look at config/lern.php
'record'=>[ /** * The Model to use */ 'model' => \Tylercd100\LERN\Models\ExceptionModel::class, /** * Database connection to use. Null is the default connection. */ 'connection'=>null, /** * Database table to use */ 'table'=>'vendor_tylercd100_lern_exceptions', /** * Information to store */ 'collect'=>[ 'method'=>false, //When true it will collect GET, POST, DELETE, PUT, etc... 'data'=>false, //When true it will collect Input data 'status_code'=>true, 'user_id'=>false, 'url'=>false, 'ip'=>false, ], ],
Note: If you change lern.recorder.model
then lern.recorder.table
and lern.recorder.connection
will be ignored unless you extend \Tylercd100\LERN\Models\ExceptionModel::class
Notifications
LERN uses the Monolog library to send notifications. If you need more than the supported notification channels, then you can add your own custom Monolog handlers. To start using any of the supported handlers just edit the provided config file config/lern.php
.
Changing the log level programmatically
Some notification services support different log levels. If changing the config value lern.notify.log_level
is not enough then try it this way:
// Change the log level. // Default is: critical // Options are: debug, info, notice, warning, error, critical, alert, emergency LERN::setLogLevel("emergency");
Changing the subject line
Some notification services support a subject line, this is how you change it.
//Change the subject LERN::setSubject("An Exception was thrown!");
Changing the body of the notification
LERN publishes a default blade template file that you can find at resources/views/exceptions/default.blade.php
.
The blade template file is compiled with these values: $exception
$url
$method
$data
$user
.
To specify a different blade template file, just edit the config file
'notify'=>[ 'view'=>'exceptions.default', ],
(deprecated) Using the LERN::setMessage()
function
Make sure that you set the view config value to null or the LERN::setMessage()
will not work
'notify'=>[ 'view'=>null, ],
Custom Monolog Handlers
To use a custom Monolog Handler call the pushHandler
method
use Monolog\Handler\SlackHandler; $handler = new SlackHandler($token, $channel); LERN::pushHandler($handler); LERN::notify($exception);
Further Reading and How-Tos
Roadmap
- Support more Monolog Handlers
- Exception report page or command to easily identify your application's issues.