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 da33385 commit a4144abCopy full SHA for a4144ab
DataCollector/HttpClientDataCollector.php
@@ -171,6 +171,10 @@ private function collectOnClient(TraceableHttpClient $client): array
171
172
private function getCurlCommand(array $trace): ?string
173
{
174
+ if (!isset($trace['info']['debug'])) {
175
+ return null;
176
+ }
177
+
178
$debug = explode("\n", $trace['info']['debug']);
179
$url = $trace['url'];
180
$command = ['curl', '--compressed'];
0 commit comments