lower loglevel

This commit is contained in:
Philipp Holzer 2020-10-18 22:32:36 +02:00
parent a74d88c4ee
commit d524a9569f
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 1 additions and 3 deletions

View File

@ -141,7 +141,7 @@ class HTTPRequest implements IHTTPRequest
curl_setopt($ch, CURLOPT_ENCODING, '');
if (!empty($opts['headers'])) {
$this->logger->warning('Wrong option \'headers\' used.');
$this->logger->notice('Wrong option \'headers\' used.');
@curl_setopt($ch, CURLOPT_HTTPHEADER, $opts['headers']);
}
@ -184,8 +184,6 @@ class HTTPRequest implements IHTTPRequest
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
}
$logger = $this->logger;
$s = @curl_exec($ch);
$curl_info = @curl_getinfo($ch);