We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bce0d8 commit 48641d6Copy full SHA for 48641d6
src/LoggerMiddleware.php
@@ -44,7 +44,10 @@ public function pre(
44
}
45
46
$this->context[$transactionId][self::REQUEST]['method'] = $request->getMethod();
47
- $this->context[$transactionId][self::REQUEST]['uri'] = (string)$this->stripQueryItems($request->getUri(), $options);
+ $this->context[$transactionId][self::REQUEST]['uri'] = (string)$this->stripQueryItems(
48
+ $request->getUri(),
49
+ $options
50
+ );
51
$this->context[$transactionId][self::REQUEST]['protocol_version'] = (string)$request->getProtocolVersion();
52
$ignoreHeaders = $options[self::class][Options::IGNORE_HEADERS] ?? [];
53
$this->context[$transactionId] = $this->iterateHeaders(
0 commit comments