mirror of
https://github.com/cesanta/mongoose.git
synced 2025-08-06 13:37:34 +08:00
Closed WS connection is not an error for the logger
This commit is contained in:
parent
9e0f04dc8b
commit
7f55fabfec
2
src/ws.c
2
src/ws.c
@ -173,7 +173,7 @@ static void mg_ws_cb(struct mg_connection *c, int ev, void *ev_data,
|
|||||||
if (final) mg_call(c, MG_EV_WS_MSG, &m);
|
if (final) mg_call(c, MG_EV_WS_MSG, &m);
|
||||||
break;
|
break;
|
||||||
case WEBSOCKET_OP_CLOSE:
|
case WEBSOCKET_OP_CLOSE:
|
||||||
LOG(LL_ERROR, ("%lu Got WS CLOSE", c->id));
|
LOG(LL_DEBUG, ("%lu Got WS CLOSE", c->id));
|
||||||
mg_call(c, MG_EV_WS_CTL, &m);
|
mg_call(c, MG_EV_WS_CTL, &m);
|
||||||
c->is_closing = 1;
|
c->is_closing = 1;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user