In config/logging.php: In channels section add these:

'none' => [
    'driver' => 'monolog',
    'handler' => \Monolog\Handler\NullHandler::class,
],

Then update your .env file to use this logger:

LOG_CHANNEL=none

And everything should work just fine.