Source code for pydmt.utils.logging
"""
logging.py
"""
import logging
from pydmt.static import LOGGER_NAME
[docs]
def get_logger():
"""
This function returns the logger for pydmt
"""
return logging.getLogger(LOGGER_NAME)
"""
logging.py
"""
import logging
from pydmt.static import LOGGER_NAME
[docs]
def get_logger():
"""
This function returns the logger for pydmt
"""
return logging.getLogger(LOGGER_NAME)