Can you configure Laravel to send Exceptions/Errors to another Logging Channel?
So the Laravel Logging capabilities are really nice with the ability to create various channels, and send logs to multiple channels, or not, either by log level and/or by explicitly calling the channel. IE: Log::channel('debugging')->error('asdf')
But I feel like I'm missing a fairly straight forward thing that I am expecting to find. Which is how to configure Laravel to send the Exception/Error reports, to a different channel than the default one. IE: So that an exception goes to say a new channel named 'exceptions' instead of the default. While Log::warn('something') would still go to the default channel.
Is there not a way to do this?
Please or to participate in this conversation.