2018-07-24 20:48:16 -07:00
|
|
|
<?php
|
2021-06-10 13:18:10 -07:00
|
|
|
use Monolog\Handler\NullHandler;
|
2018-07-24 20:48:16 -07:00
|
|
|
use Monolog\Handler\StreamHandler;
|
2021-06-10 13:18:10 -07:00
|
|
|
use Monolog\Handler\SyslogUdpHandler;
|
2018-07-24 20:48:16 -07:00
|
|
|
|
2023-01-10 00:20:56 -08:00
|
|
|
$config = [
|
2018-07-24 20:48:16 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Default Log Channel
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This option defines the default log channel that gets used when writing
|
|
|
|
| messages to the logs. The name specified in this option should match
|
|
|
|
| one of the channels defined in the "channels" configuration array.
|
|
|
|
|
|
|
|
|
*/
|
2021-06-10 13:18:10 -07:00
|
|
|
|
2021-04-21 11:40:23 -07:00
|
|
|
'default' => env('LOG_CHANNEL', 'stack'),
|
2018-07-24 20:48:16 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Log Channels
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may configure the log channels for your application. Out of
|
|
|
|
| the box, Laravel uses the Monolog PHP logging library. This gives
|
|
|
|
| you a variety of powerful log handlers / formatters to utilize.
|
|
|
|
|
|
|
|
|
| Available Drivers: "single", "daily", "slack", "syslog",
|
|
|
|
| "errorlog", "monolog",
|
|
|
|
| "custom", "stack"
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'channels' => [
|
2023-01-10 00:20:56 -08:00
|
|
|
// This will get overwritten to 'single' AND 'rollbar' in the code at the bottom of this file
|
|
|
|
// if a ROLLBAR_TOKEN is given in the .env file
|
2018-07-24 20:48:16 -07:00
|
|
|
'stack' => [
|
|
|
|
'driver' => 'stack',
|
|
|
|
'channels' => ['single'],
|
2021-06-10 13:18:10 -07:00
|
|
|
'ignore_exceptions' => false,
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
'single' => [
|
|
|
|
'driver' => 'single',
|
|
|
|
'path' => storage_path('logs/laravel.log'),
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
'daily' => [
|
|
|
|
'driver' => 'daily',
|
|
|
|
'path' => storage_path('logs/laravel.log'),
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2022-07-25 19:25:06 -07:00
|
|
|
'days' => env('LOG_MAX_DAYS', 14),
|
2021-03-09 16:16:57 -08:00
|
|
|
],
|
|
|
|
|
2018-07-24 20:48:16 -07:00
|
|
|
'slack' => [
|
|
|
|
'driver' => 'slack',
|
|
|
|
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
|
|
|
'username' => 'Laravel Log',
|
|
|
|
'emoji' => ':boom:',
|
2021-06-10 13:18:10 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'critical'),
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
|
2021-06-10 13:18:10 -07:00
|
|
|
'papertrail' => [
|
2018-07-24 20:48:16 -07:00
|
|
|
'driver' => 'monolog',
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2021-06-10 13:18:10 -07:00
|
|
|
'handler' => SyslogUdpHandler::class,
|
|
|
|
'handler_with' => [
|
|
|
|
'host' => env('PAPERTRAIL_URL'),
|
|
|
|
'port' => env('PAPERTRAIL_PORT'),
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
2021-06-10 13:18:10 -07:00
|
|
|
'stderr' => [
|
2021-02-24 09:10:03 -08:00
|
|
|
'driver' => 'monolog',
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2021-02-24 09:10:03 -08:00
|
|
|
'handler' => StreamHandler::class,
|
2021-06-10 13:18:10 -07:00
|
|
|
'formatter' => env('LOG_STDERR_FORMATTER'),
|
|
|
|
'with' => [
|
|
|
|
'stream' => 'php://stderr',
|
|
|
|
],
|
2021-02-24 09:10:03 -08:00
|
|
|
],
|
|
|
|
|
2018-07-24 20:48:16 -07:00
|
|
|
'syslog' => [
|
|
|
|
'driver' => 'syslog',
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
|
|
|
|
'errorlog' => [
|
|
|
|
'driver' => 'errorlog',
|
2022-07-25 18:44:37 -07:00
|
|
|
'level' => env('LOG_LEVEL', 'warning'),
|
2018-07-24 20:48:16 -07:00
|
|
|
],
|
|
|
|
|
2021-06-10 13:18:10 -07:00
|
|
|
'null' => [
|
|
|
|
'driver' => 'monolog',
|
|
|
|
'handler' => NullHandler::class,
|
|
|
|
],
|
2021-03-09 16:16:57 -08:00
|
|
|
|
2021-06-10 13:18:10 -07:00
|
|
|
'emergency' => [
|
|
|
|
'path' => storage_path('logs/laravel.log'),
|
|
|
|
],
|
2022-10-05 17:43:59 -07:00
|
|
|
|
|
|
|
'scimtrace' => [
|
|
|
|
'driver' => 'single',
|
|
|
|
'path' => storage_path('logs/scim.log')
|
2023-01-10 00:20:56 -08:00
|
|
|
],
|
|
|
|
|
|
|
|
'rollbar' => [
|
|
|
|
'driver' => 'monolog',
|
|
|
|
'handler' => \Rollbar\Laravel\MonologHandler::class,
|
|
|
|
'access_token' => env('ROLLBAR_TOKEN'),
|
|
|
|
'level' => env('ROLLBAR_LEVEL', 'error'),
|
2023-02-01 16:43:09 -08:00
|
|
|
'check_ignore' => function($isUncaught, $args, $payload) {
|
2023-02-15 11:31:13 -08:00
|
|
|
if (App::environment('production') && is_object($args) && get_class($args) == Rollbar\ErrorWrapper::class && $args->errorLevel == E_WARNING ) {
|
2023-02-14 20:00:06 -08:00
|
|
|
\Log::info("IGNORING E_WARNING in production mode: ".$args->getMessage());
|
|
|
|
return true; // "TRUE - you should ignore it!"
|
2023-02-01 16:43:09 -08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
2023-01-10 00:20:56 -08:00
|
|
|
],
|
2021-06-10 13:18:10 -07:00
|
|
|
],
|
2021-03-09 16:16:57 -08:00
|
|
|
|
2021-06-10 13:18:10 -07:00
|
|
|
];
|
2023-01-10 00:20:56 -08:00
|
|
|
|
|
|
|
|
|
|
|
// Only add rollbar if the .env has a rollbar token
|
2023-01-13 13:50:16 -08:00
|
|
|
if ((env('APP_ENV')=='production') && (env('ROLLBAR_TOKEN'))) {
|
2023-01-10 00:20:56 -08:00
|
|
|
$config['channels']['stack']['channels'] = ['single', 'rollbar'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $config;
|