A new utils_logger.py is created in common_utils. It is a global setting so after calling the function you only need to use logger = logging.getLogger(__name__). Every model calls this function in main.py.
Note that if there is logging in set_project_paths which is called before setup_logging, it won't follow this format.
A new utils_logger.py is created in common_utils. It is a global setting so after calling the function you only need to use
logger = logging.getLogger(__name__)
. Every model calls this function in main.py.Note that if there is logging in
set_project_paths
which is called beforesetup_logging
, it won't follow this format.