Skip to content

Commit 7e33211

Browse files
committed
remove serial
1 parent 3c71c4d commit 7e33211

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/HTTPSServer.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@ HTTPSServer::~HTTPSServer() {
2121
uint8_t HTTPSServer::setupSocket() {
2222
if (!isRunning()) {
2323
if (!setupSSLCTX()) {
24-
Serial.println("setupSSLCTX failed");
2524
return 0;
2625
}
2726

2827
if (!setupCert()) {
29-
Serial.println("setupCert failed");
3028
SSL_CTX_free(_sslctx);
3129
_sslctx = NULL;
3230
return 0;
@@ -35,7 +33,6 @@ uint8_t HTTPSServer::setupSocket() {
3533
if (HTTPServer::setupSocket()) {
3634
return 1;
3735
} else {
38-
Serial.println("setupSockets failed");
3936
SSL_CTX_free(_sslctx);
4037
_sslctx = NULL;
4138
return 0;

0 commit comments

Comments
 (0)