A tool for moving and symlinking directories to a central location
 

6 lines
127 B

import logging
def create_logger(logger_name: str) -> logging:
logger = logging.getLogger(logger_name)
return logger