77 lines
2.3 KiB
PHP
Executable File
77 lines
2.3 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer Route
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer will be available under this URL.
|
|
|
|
|
*/
|
|
|
|
'route_path' => 'admin/developers/logs',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Back to system URL
|
|
|--------------------------------------------------------------------------
|
|
| When set, displays a link to easily get back to this URL.
|
|
| Set to `null` to hide this link.
|
|
|
|
|
| Optional label to display for the above URL.
|
|
|
|
|
*/
|
|
|
|
'back_to_system_url' => '/admin/developers',
|
|
|
|
'back_to_system_label' => 'Back to Developer Tools', // Displayed by default: "Back to {{ app.name }}"
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer route middleware.
|
|
|--------------------------------------------------------------------------
|
|
| The middleware should enable session and cookies support in order for the Log Viewer to work.
|
|
| The 'web' middleware will be applied automatically if empty.
|
|
|
|
|
*/
|
|
|
|
'middleware' => ['web', 'auth'],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Include file patterns
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
'include_files' => ['*.log'],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Exclude file patterns.
|
|
|--------------------------------------------------------------------------
|
|
| This will take precedence over included files.
|
|
|
|
|
*/
|
|
|
|
'exclude_files' => [
|
|
//'my_secret.log'
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Shorter stack trace filters.
|
|
|--------------------------------------------------------------------------
|
|
| Lines containing any of these strings will be excluded from the full log.
|
|
| This setting is only active when the function is enabled via the user interface.
|
|
|
|
|
*/
|
|
|
|
'shorter_stack_trace_excludes' => [
|
|
'/vendor/symfony/',
|
|
'/vendor/laravel/framework/',
|
|
'/vendor/barryvdh/laravel-debugbar/',
|
|
],
|
|
];
|