I am writing a python library main_lib that relies on another library dep_lib that is installed as dependency.
in both libraries each file starts with :
logger = logging.getLogger(library_name.filename)
and logs are done as:
logger.info("say somthing")
now in my main_lib I have a main method that uses function from both libraries.
I would like logs from both libraries to be printed. How should I configure the log in this main method?