'driver' => 'monolog',
'handler' => NullHandler::class,
],
+
+ // Testing channel
+ // Uses a shared testing instance during tests
+ // so that logs can be checked against.
+ 'testing' => [
+ 'driver' => 'testing',
+ ],
],
+ // Failed Access Message
+ // Defines the message to log into webserver logs in case of failed access,
+ // for further processing by tools like Fail2Ban.
+ 'failed_access_message' => env('FAILED_ACCESS_MESSAGE', ''),
+
];