Skip to content

Commit

Permalink
Removing wrong code
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Nov 26, 2021
1 parent 2c607ee commit ca5399c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redisdb_exchange_plugin/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ def error(self, msg: str, *args, **kwargs) -> None: # type: ignore[no-untyped-d

# -----------------------------------------------------------------------------

def exception(self, msg: Exception, *args, exc_info: bool = True, **kwargs) -> None: # type: ignore[no-untyped-def]
def exception(self, msg: Exception) -> None:
"""Log thrown exception"""
self.__logger.exception(msg, *args, exc_info, **kwargs)
self.__logger.exception(msg)

0 comments on commit ca5399c

Please sign in to comment.