Skip to content

Commit 22f0f39

Browse files
committed
Remove spurious debugging messages
1 parent e034e03 commit 22f0f39

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

app/mbedtls/app/espconn_secure.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ sint8 espconn_secure_send(struct espconn *espconn, uint8 *psent, uint16 length)
184184
bool ICACHE_FLASH_ATTR
185185
espconn_secure_set_hostname(const char* hostname)
186186
{
187-
printf("Setting SNI hostname: %s\n", hostname ? hostname : "NULL");
188187

189188
if (ssl_client_options.hostname) {
190189
os_free(ssl_client_options.hostname);
@@ -195,7 +194,6 @@ espconn_secure_set_hostname(const char* hostname)
195194
ssl_client_options.hostname = (char*)os_malloc(strlen(hostname) + 1);
196195
if (ssl_client_options.hostname) {
197196
strcpy(ssl_client_options.hostname, hostname);
198-
printf("SNI hostname set successfully: %s\n", ssl_client_options.hostname);
199197
return true;
200198
}
201199
return false;

0 commit comments

Comments
 (0)