Minor changes

This commit is contained in:
netkas 2025-01-22 18:20:00 -05:00
parent 83112f0137
commit d56483119c
2 changed files with 2 additions and 2 deletions

View file

@ -200,7 +200,6 @@
$this->logger->debug(sprintf('Client Encryption Public Key: %s', $this->clientEncryptionKeyPair->getPublicKey())); $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('Client Signing Public Key: %s', $this->clientSigningKeyPair->getPublicKey()));
$this->logger->debug(sprintf('Identified As: %s', $this->identifiedAs->getAddress())); $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); $response = curl_exec($ch);
@ -533,7 +532,6 @@
} }
curl_close($ch); curl_close($ch);
$this->logger->debug(sprintf('Server information response: %s', $response));
return ServerInformation::fromArray(json_decode($response, true)); return ServerInformation::fromArray(json_decode($response, true));
} }

View file

@ -14,6 +14,8 @@
protected function setUp(): void protected function setUp(): void
{ {
putenv('LOG_LEVEL=debug');
// Add mocked records for the test domains // 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('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'); ServerResolver::addMock('teapot.com', 'v=socialbox;sb-rpc=http://127.0.0.0:8087/;sb-key=sig:MDXUuripAo_IAv-EZTEoFhpIdhsXxfMLNunSnQzxYiY;sb-exp=0');