1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00

quench logging

This commit is contained in:
Andy Green 2016-08-22 07:07:10 +08:00
parent 1172a89bb3
commit b49b0fbafa
2 changed files with 2 additions and 2 deletions

View file

@ -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 */

View file

@ -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 */