diff --git a/src/shrpx_client_handler.cc b/src/shrpx_client_handler.cc index e88852bf..48620c49 100644 --- a/src/shrpx_client_handler.cc +++ b/src/shrpx_client_handler.cc @@ -43,7 +43,6 @@ void upstream_readcb(bufferevent *bev, void *arg) ClientHandler *handler = reinterpret_cast(arg); int rv = handler->on_read(); if(rv != 0) { - CLOG(WARNING, handler) << "Read operation (application level) failure"; delete handler; } } @@ -65,7 +64,6 @@ void upstream_writecb(bufferevent *bev, void *arg) Upstream *upstream = handler->get_upstream(); int rv = upstream->on_write(); if(rv != 0) { - CLOG(WARNING, handler) << "Write operation (application level) failure"; delete handler; } }