From 2a62218d2a4344255463eeb7b1cbda507f90e86f Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Thu, 17 Jan 2019 06:51:35 +0100 Subject: [PATCH] Disable onWritable debug prints --- src/HttpContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpContext.h b/src/HttpContext.h index 2fd9b52..0d1dfc5 100644 --- a/src/HttpContext.h +++ b/src/HttpContext.h @@ -188,7 +188,7 @@ private: /* Handle HTTP write out (note: SSL_read may trigger this spuriously, the app need to handle spurious calls) */ static_dispatch(us_ssl_socket_context_on_writable, us_socket_context_on_writable)(getSocketContext(), [](auto *s) { - std::cout << "HttpContext::onWritable event fired!" << std::endl; + //std::cout << "HttpContext::onWritable event fired!" << std::endl; /* We are now writable, so hang timeout again */ static_dispatch(us_ssl_socket_timeout, us_socket_timeout)(s, 0);