Fix incorrect indentation level in Logging.py
This commit is contained in:
parent
1753329aaf
commit
baeff58539
1 changed files with 1 additions and 1 deletions
|
@ -67,4 +67,4 @@ class Log(object):
|
||||||
def critical(self, message: str, params: typing.List, **kwargs):
|
def critical(self, message: str, params: typing.List, **kwargs):
|
||||||
self._log(message, params, logging.CRITICAL, kwargs)
|
self._log(message, params, logging.CRITICAL, kwargs)
|
||||||
def _log(self, message: str, params: typing.List, level: int, kwargs: dict):
|
def _log(self, message: str, params: typing.List, level: int, kwargs: dict):
|
||||||
self.logger.log(level, message, *params, **kwargs)
|
self.logger.log(level, message, *params, **kwargs)
|
||||||
|
|
Loading…
Reference in a new issue