From b49b0fbafac7a00b42766e13dc7ead95cc0208ac Mon Sep 17 00:00:00 2001 From: Andy Green Date: Mon, 22 Aug 2016 07:07:10 +0800 Subject: [PATCH] quench logging --- lib/libwebsockets.c | 2 +- lib/output.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libwebsockets.c b/lib/libwebsockets.c index ef70e1f5..33bdb895 100755 --- a/lib/libwebsockets.c +++ b/lib/libwebsockets.c @@ -190,7 +190,7 @@ lws_close_free_wsi(struct lws *wsi, enum lws_close_status reason) if (wsi->cgi) { struct lws_cgi **pcgi = &pt->cgi_list; /* remove us from the cgi list */ - lwsl_notice("%s: remove cgi %p from list\n", __func__, wsi->cgi); + lwsl_debug("%s: remove cgi %p from list\n", __func__, wsi->cgi); while (*pcgi) { if (*pcgi == wsi->cgi) { /* drop us from the pt cgi list */ diff --git a/lib/output.c b/lib/output.c index 273314c1..3fa9f522 100644 --- a/lib/output.c +++ b/lib/output.c @@ -636,7 +636,7 @@ all_sent: lws_plat_file_close(wsi, wsi->u.http.fd); wsi->u.http.fd = LWS_INVALID_FILE; - lwsl_notice("file completed\n"); + lwsl_debug("file completed\n"); if (wsi->protocol->callback) /* ignore callback returned value */ -- 2.34.1