Currently `GelfHttpHandler` and `GelfHttpsHandler` are not utilising [handleError](https://docs.python.org/3/library/logging.html#logging.Handler.handleError) which violates python documentation about writing own handlers. Solution: ``` def emit(record): try: ... # logic here except: self.handleError(record) ```
Currently
GelfHttpHandlerandGelfHttpsHandlerare not utilising handleError which violates python documentation about writing own handlers.Solution: