mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Add logging for failed registration
This commit is contained in:
+11
-2
@@ -38,7 +38,7 @@ return [
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => 'debug',
|
||||
'handler' => SyslogUdpHandler::class,
|
||||
'handler' => Monolog\Handler\SyslogUdpHandler::class,
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
@@ -46,7 +46,7 @@ return [
|
||||
],
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => StreamHandler::class,
|
||||
'handler' => Monolog\Handler\StreamHandler::class,
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'with' => [
|
||||
'stream' => 'php://stderr',
|
||||
@@ -87,6 +87,15 @@ return [
|
||||
'permission' => 0775,
|
||||
'locking' => false,
|
||||
],
|
||||
'registration' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/registration.log'),
|
||||
'level' => 'debug',
|
||||
'days' => 7,
|
||||
'bubble' => true,
|
||||
'permission' => 0775,
|
||||
'locking' => false,
|
||||
],
|
||||
'crc_oso' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/crc_oso.log'),
|
||||
|
||||
Reference in New Issue
Block a user