From 7d251f092ecd634b2db1ea136585f7f5bf914628 Mon Sep 17 00:00:00 2001 From: Philipp Date: Wed, 25 Aug 2021 13:58:29 +0200 Subject: [PATCH] Add logpoint --- src/Network/HTTPClient.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Network/HTTPClient.php b/src/Network/HTTPClient.php index f4653628ff..90f7775df7 100644 --- a/src/Network/HTTPClient.php +++ b/src/Network/HTTPClient.php @@ -129,6 +129,8 @@ class HTTPClient implements IHTTPClient }; try { + $this->logger->debug('http request config.', ['url' => $url, 'method' => $method, 'options' => $conf]); + switch ($method) { case 'get': case 'head':