From 997fc6561540e6f43ffcb107cc5f490940e01fa8 Mon Sep 17 00:00:00 2001 From: Anton Zenkov Date: Wed, 30 Oct 2024 10:34:08 +0300 Subject: [PATCH] Fix method property in logger context (#373) --- src/Driver/Internal/AbstractHttpDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Driver/Internal/AbstractHttpDriver.php b/src/Driver/Internal/AbstractHttpDriver.php index 4bce200c..ee4f274c 100644 --- a/src/Driver/Internal/AbstractHttpDriver.php +++ b/src/Driver/Internal/AbstractHttpDriver.php @@ -113,7 +113,7 @@ private function handleInternalServerError(Request $request, \Throwable $excepti ), [ 'exception' => $exception, - 'method' => $request, + 'method' => $method, 'uri' => $uri, 'protocolVersion' => $protocolVersion, 'local' => $local,