fix(pterodactyl): log websocket messages to VERBOSE (log level 5) and not DEBUG

This commit is contained in:
Seaswimmer 2024-03-07 02:52:44 -05:00
parent 9e826d6ba5
commit ae31a61436
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -1,4 +1,14 @@
import logging
logger = logging.getLogger('red.seacogs.pterodactyl')
class WebsocketLogger(logging.Logger):
def __init__(self, name, level=logging.NOTSET):
super().__init__(name, level)
def debug(self, msg, *args, **kwargs):
self.log(logging.VERBOSE, msg, *args, **kwargs)
logging.setLoggerClass(WebsocketLogger)
websocket_logger = logging.getLogger('red.seacogs.pterodactyl.websocket')
logging.VERBOSE = 5
logging.addLevelName(logging.VERBOSE, "VERBOSE")