remove error_logger on websockets (#2373)

Co-authored-by: Adam Hopkins <adam@amhopkins.com>
This commit is contained in:
Jonathan Vargas 2022-03-23 09:25:19 -05:00 committed by GitHub
parent 32962d1e1c
commit 361c242473
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ from websockets.server import ServerConnection
from websockets.typing import Subprotocol
from sanic.exceptions import ServerError
from sanic.log import error_logger
from sanic.log import logger
from sanic.server import HttpProtocol
from ..websockets.impl import WebsocketImplProtocol
@ -104,7 +104,7 @@ class WebSocketProtocol(HttpProtocol):
max_size=self.websocket_max_size,
subprotocols=subprotocols,
state=OPEN,
logger=error_logger,
logger=logger,
)
resp: "http11.Response" = ws_conn.accept(request)
except Exception: