Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Update Bugsnag integration for Laravel 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
david-perez committed Dec 9, 2019
1 parent 0c81d02 commit 9c3fa5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ class AppServiceProvider extends ServiceProvider
*/
public function register()
{
$this->app->alias('bugsnag.multi', \Illuminate\Contracts\Logging\Log::class);
$this->app->alias('bugsnag.multi', \Psr\Log\LoggerInterface::class);
//
}

/**
Expand Down
2 changes: 1 addition & 1 deletion config/logging.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['daily'],
'channels' => ['daily', 'bugsnag'],
'ignore_exceptions' => false,
],

Expand Down

0 comments on commit 9c3fa5a

Please sign in to comment.