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 0a254cf commit 5a5fb3eCopy full SHA for 5a5fb3e
src/LaunchDarkly/GuzzleFeatureRequester.php
@@ -52,7 +52,6 @@ public function get($key)
52
$uri = $this->_baseUri . self::SDK_FLAGS . "/" . $key;
53
$response = $this->_client->get($uri, $this->_defaults);
54
$body = $response->getBody();
55
- $this->_logger->info("Got status code: " . $response->getStatusCode() . " with body: " . $response->getBody());
56
return FeatureFlag::decode(json_decode($body, true));
57
} catch (BadResponseException $e) {
58
$code = $e->getResponse()->getStatusCode();
0 commit comments