Skip to content

Instantly share code, notes, and snippets.

@PabloAlexandre
Last active February 1, 2022 03:59
Show Gist options
  • Select an option

  • Save PabloAlexandre/c5a37bf3cdb7ef8bf788d0eebff8bf27 to your computer and use it in GitHub Desktop.

Select an option

Save PabloAlexandre/c5a37bf3cdb7ef8bf788d0eebff8bf27 to your computer and use it in GitHub Desktop.
<?php
return [
'default' => env('LOG_CHANNEL', 'stack'),
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['rollbar'],
],
'rollbar' => [
'driver' => 'monolog',
'handler' => Rollbar\Monolog\Handler\RollbarHandler::class,
'access_token' => env('ROLLBAR_TOKEN'),
'level' => 'debug',
],
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment