Make custom log levels report the right stack frame
The stdlib's `logging.LoggingAdapter` doesn't currently pass through `stacklevel: int` down to its wrapped logger instance. Hack it here and get our msgs looking like they would if using a built-in level.less_logging
parent
3f6d4d6af4
commit
d2f0843041
|
@ -2,7 +2,6 @@
|
||||||
Log like a forester!
|
Log like a forester!
|
||||||
"""
|
"""
|
||||||
import sys
|
import sys
|
||||||
from functools import partial
|
|
||||||
import logging
|
import logging
|
||||||
import colorlog # type: ignore
|
import colorlog # type: ignore
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
@ -75,6 +74,42 @@ class StackLevelAdapter(logging.LoggerAdapter):
|
||||||
) -> None:
|
) -> None:
|
||||||
return self.log(500, msg)
|
return self.log(500, msg)
|
||||||
|
|
||||||
|
def log(self, level, msg, *args, **kwargs):
|
||||||
|
"""
|
||||||
|
Delegate a log call to the underlying logger, after adding
|
||||||
|
contextual information from this adapter instance.
|
||||||
|
"""
|
||||||
|
if self.isEnabledFor(level):
|
||||||
|
# msg, kwargs = self.process(msg, kwargs)
|
||||||
|
self._log(level, msg, args, **kwargs)
|
||||||
|
|
||||||
|
# LOL, the stdlib doesn't allow passing through ``stacklevel``..
|
||||||
|
def _log(
|
||||||
|
self,
|
||||||
|
level,
|
||||||
|
msg,
|
||||||
|
args,
|
||||||
|
exc_info=None,
|
||||||
|
extra=None,
|
||||||
|
stack_info=False,
|
||||||
|
|
||||||
|
# XXX: bit we added to show fileinfo from actual caller.
|
||||||
|
# this level then ``.log()`` then finally the caller's level..
|
||||||
|
stacklevel=3,
|
||||||
|
):
|
||||||
|
"""
|
||||||
|
Low-level log implementation, proxied to allow nested logger adapters.
|
||||||
|
"""
|
||||||
|
return self.logger._log(
|
||||||
|
level,
|
||||||
|
msg,
|
||||||
|
args,
|
||||||
|
exc_info=exc_info,
|
||||||
|
extra=self.extra,
|
||||||
|
stack_info=stack_info,
|
||||||
|
stacklevel=stacklevel,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def get_logger(
|
def get_logger(
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue