Skip to content

Commit 4a9389d

Browse files
committed
remove debug message
1 parent 14f2309 commit 4a9389d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ports/raspberrypi/common-hal/ssl/SSLSocket.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,10 @@ ssl_sslsocket_obj_t *common_hal_ssl_sslcontext_wrap_socket(ssl_sslcontext_obj_t
172172
}
173173

174174
if (self->crt_bundle_attach != NULL) {
175-
mp_printf(&mp_plat_print, "attaching bundle\n");
176175
mbedtls_ssl_conf_authmode(&o->conf, MBEDTLS_SSL_VERIFY_REQUIRED);
177176
self->crt_bundle_attach(&o->conf);
178177
// } else if(self->cacert_buf && self->cacert_bytes) { // TODO: user bundle
179178
} else {
180-
mp_printf(&mp_plat_print, "yolo\n");
181179
mbedtls_ssl_conf_authmode(&o->conf, MBEDTLS_SSL_VERIFY_NONE);
182180
}
183181
mbedtls_ssl_conf_rng(&o->conf, mbedtls_ctr_drbg_random, &o->ctr_drbg);

0 commit comments

Comments
 (0)