deep.logging
Deep client logging api.
debug(msg, *args, **kwargs)
Log a message at debug level.
:param msg: the message to log :param args: the args for the log :param kwargs: the kwargs
error(msg, *args, **kwargs)
Log a message at error level.
:param msg: the message to log :param args: the args for the log :param kwargs: the kwargs
exception(msg, *args, exc_info=True, **kwargs)
Log a message with the exception data.
:param msg: the message to log :param args: the args for the log :param exc_info: include exc info in log :param kwargs: the kwargs
Source code in deep/logging/__init__.py
info(msg, *args, **kwargs)
Log a message at info level.
:param msg: the message to log :param args: the args for the log :param kwargs: the kwargs
init(cfg=None)
Configure the deep log provider.
:param cfg: the config for deep.
Source code in deep/logging/__init__.py
warning(msg, *args, **kwargs)
Log a message at warning level.
:param msg: the message to log :param args: the args for the log :param kwargs: the kwargs