mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
debug reduce noise
Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
parent
9c60ed9d07
commit
7714f71e4e
2 changed files with 5 additions and 4 deletions
|
@ -207,7 +207,7 @@ int lws_header_table_detach(struct lws *wsi)
|
||||||
}
|
}
|
||||||
time(&now);
|
time(&now);
|
||||||
if (now - wsi->u.hdr.ah->assigned > 3)
|
if (now - wsi->u.hdr.ah->assigned > 3)
|
||||||
lwsl_err("header assign - free time %d\n",
|
lwsl_notice("header assign - free time %d\n",
|
||||||
(int)(now - wsi->u.hdr.ah->assigned));
|
(int)(now - wsi->u.hdr.ah->assigned));
|
||||||
|
|
||||||
/* if we think we're detaching one, there should be one in use */
|
/* if we think we're detaching one, there should be one in use */
|
||||||
|
|
|
@ -562,8 +562,9 @@ upgrade_ws:
|
||||||
* upgrade request and to already be in the ah rx buffer.
|
* upgrade request and to already be in the ah rx buffer.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
lwsl_err("%s: %p: inheriting ah in ws mode (rxpos: %d, rxlen: %d)\n",
|
lwsl_info("%s: %p: inheriting ah in ws mode (rxpos:%d, rxlen:%d)\n",
|
||||||
__func__, wsi, wsi->u.hdr.ah->rxpos, wsi->u.hdr.ah->rxlen);
|
__func__, wsi, wsi->u.hdr.ah->rxpos,
|
||||||
|
wsi->u.hdr.ah->rxlen);
|
||||||
lws_pt_lock(pt);
|
lws_pt_lock(pt);
|
||||||
hdr = wsi->u.hdr;
|
hdr = wsi->u.hdr;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue