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

logging: gate_accepts: reduce verbosity

This commit is contained in:
Andy Green 2021-12-09 05:13:15 +00:00
parent f7aff789ca
commit 0dae22e4dd

View file

@ -203,7 +203,7 @@ lws_gate_accepts(struct lws_context *context, int on)
if (context->tls_gate_accepts == (char)on)
return 0;
lwsl_cx_notice(context, "on = %d", on);
lwsl_cx_info(context, "on = %d", on);
context->tls_gate_accepts = (char)on;