diff --git a/src/Socialbox/Classes/RpcClient.php b/src/Socialbox/Classes/RpcClient.php index a2cb0e5..a7b320a 100644 --- a/src/Socialbox/Classes/RpcClient.php +++ b/src/Socialbox/Classes/RpcClient.php @@ -200,7 +200,6 @@ $this->logger->debug(sprintf('Client Encryption Public Key: %s', $this->clientEncryptionKeyPair->getPublicKey())); $this->logger->debug(sprintf('Client Signing Public Key: %s', $this->clientSigningKeyPair->getPublicKey())); $this->logger->debug(sprintf('Identified As: %s', $this->identifiedAs->getAddress())); - $this->logger->debug(sprintf('Client Transport Encryption Key: %s', $this->clientTransportEncryptionKey)); $response = curl_exec($ch); @@ -533,7 +532,6 @@ } curl_close($ch); - $this->logger->debug(sprintf('Server information response: %s', $response)); return ServerInformation::fromArray(json_decode($response, true)); } diff --git a/tests/Socialbox/SocialClientTest.php b/tests/Socialbox/SocialClientTest.php index e0a0691..43d6505 100644 --- a/tests/Socialbox/SocialClientTest.php +++ b/tests/Socialbox/SocialClientTest.php @@ -14,6 +14,8 @@ protected function setUp(): void { + putenv('LOG_LEVEL=debug'); + // Add mocked records for the test domains ServerResolver::addMock('coffee.com', 'v=socialbox;sb-rpc=http://127.0.0.0:8086/;sb-key=sig:g59Cf8j1wmQmRg1MkveYbpdiZ-1-_hFU9eRRJmQAwmc;sb-exp=0'); ServerResolver::addMock('teapot.com', 'v=socialbox;sb-rpc=http://127.0.0.0:8087/;sb-key=sig:MDXUuripAo_IAv-EZTEoFhpIdhsXxfMLNunSnQzxYiY;sb-exp=0');