arturishe21 / LogEnvelope by arturishe
forked from Cherry-Pie/LogEnvelope

Laravel 5 email on error
205
0
1
Package Data
Maintainer Username: arturishe
Maintainer Contact: 12fcv4@gmail.com (Yaro)
Package Create Date: 2017-03-16
Package Last Update: 2018-03-03
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:06:09
Package Statistics
Total Downloads: 205
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Log Envelope

Laravel 5 package for logging errors to your e-mail(s), telegram, slack and database!

Installation

You can install the package through Composer.

composer require vis/log-envelope

You must install this service provider. Make this the very first provider in list.

// config/app.php
'providers' => [
    // make this very first provider
    // so fatal exceptions can be catchable by envelope
    Yaro\LogEnvelope\ServiceProvider::class,
    //...
];

Then publish the config and migration file of the package using artisan.

php artisan vendor:publish --provider="Yaro\LogEnvelope\ServiceProvider"

Change your Exception Handler's (/app/Exceptions/Handler.php by default) report method like this:

//...
public function report(Exception $e)
{
    $res = parent::report($e);
    
    \LogEnvelope::send($e);
    //...
    
    return $res; 
}
//...

Change config yaro.log-envelope.php for your needs. You can choose to log your errors to your database or send them to your email/telegram/slack. Emails are preferable, cuz they contains more debug information, such as traceback.

Also there is force_config option, where you can define which configs to override for LogEnvelope execution. E.g., if you using some smtp for mail sending and queue it, you can change configs to send LogEnvelope emails immediately and not via smtp:

'force_config' => [
    'mail.driver' => 'sendmail',
    'queue.default' => 'sync',
],

TODO

  • highlight traceback in emails
  • page with logs from database

Results

Something like this with other info for debugging.


Email:

results


Slack:

results


Telegram:

results

License

The MIT License (MIT). Please see LICENSE for more information.