From 02707364f00d95f507f2bf9683372700f0d71e9e Mon Sep 17 00:00:00 2001 From: Deomid Ryabkov Date: Tue, 20 Jun 2017 19:54:01 +0100 Subject: [PATCH] Lower conn accept message verbosity to DEBUG Raised in previous commit by mistake PUBLISHED_FROM=31a73fb610c34ed0c85d081bfa11a8067f216696 --- mongoose.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index 7de66e91..7f7f099c 100644 --- a/mongoose.c +++ b/mongoose.c @@ -14484,7 +14484,7 @@ static err_t mg_lwip_accept_cb(void *arg, struct tcp_pcb *newtpcb, err_t err) { struct mg_connection *lc = (struct mg_connection *) arg, *nc; struct mg_lwip_conn_state *lcs, *cs; struct tcp_pcb_listen *lpcb; - LOG(LL_INFO, + LOG(LL_DEBUG, ("%p conn %p from %s:%u", lc, newtpcb, IPADDR_NTOA(ipX_2_ip(&newtpcb->remote_ip)), newtpcb->remote_port)); if (lc == NULL) {