34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
import logging
|
|
import sys
|
|
import traceback
|
|
|
|
|
|
def logging_error(msg: str, *args) -> None:
|
|
"""
|
|
Log an error message according to current logging for 'ERROR' level.
|
|
Add module name, line and function name where the error occurred, on single line.
|
|
Args:
|
|
msg (str): The error message to log.
|
|
"""
|
|
_exec_info = sys.exc_info()[2]
|
|
if _exec_info:
|
|
_tb = traceback.extract_tb(sys.exc_info()[2])[-1]
|
|
logging.error(f" [E] '{msg}' ---> '{_tb.filename}': {_tb.lineno}, func: '{_tb.name}'", *args)
|
|
else:
|
|
logging.error(f" [E] {msg}", *args)
|
|
|
|
|
|
def logging_debug(msg: str, *args) -> None:
|
|
"""
|
|
Log a debug message according to current logging for 'DEBUG' level.
|
|
Add module name, line and function name where the print occurred, on single line.
|
|
Args:
|
|
msg (str): The error message to log.
|
|
"""
|
|
_exec_info = sys.exc_info()[2]
|
|
if _exec_info:
|
|
_tb = traceback.extract_tb(sys.exc_info()[2])[-1]
|
|
logging.debug(f" [DBG] '{msg}' ---> '{_tb.filename}': {_tb.lineno}, func: '{_tb.name}'", *args)
|
|
else:
|
|
logging.debug(f" [DBG] {msg}", *args)
|