File size: 209 Bytes
478dec6
 
 
 
 
 
 
1
2
3
4
5
6
7
import logging

def get_logger(tag_name:str, level:int = logging.INFO):
    FORMAT = '%(message)s'
    logging.basicConfig(format=FORMAT, level=level)
    logger = logging.getLogger(tag_name)
    return logger