Laravel contextual information logging doesn't work when specifying logging channel
When using contextual information if logging in Laravel v10 (https://laravel.com/docs/10.x/logging#contextual-information), the contextual information doesn't get merged when specifying the channel name. e.g.: This works fine: Log::info( 'User {user} created Thing {id}', [ 'user' => auth()->user()->id, 'id' => $thing->id ] );…