We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c71c4d commit 7e33211Copy full SHA for 7e33211
src/HTTPSServer.cpp
@@ -21,12 +21,10 @@ HTTPSServer::~HTTPSServer() {
21
uint8_t HTTPSServer::setupSocket() {
22
if (!isRunning()) {
23
if (!setupSSLCTX()) {
24
- Serial.println("setupSSLCTX failed");
25
return 0;
26
}
27
28
if (!setupCert()) {
29
- Serial.println("setupCert failed");
30
SSL_CTX_free(_sslctx);
31
_sslctx = NULL;
32
@@ -35,7 +33,6 @@ uint8_t HTTPSServer::setupSocket() {
35
33
if (HTTPServer::setupSocket()) {
36
34
return 1;
37
} else {
38
- Serial.println("setupSockets failed");
39
40
41
0 commit comments