ce48859079
https://g.codrs.ru/Hackaton/Backend/pulls/2#issuecomment-23 https://g.codrs.ru/Hackaton/Backend/pulls/2#issuecomment-31
7 lines
125 B
Python
7 lines
125 B
Python
import logging
|
|
|
|
def createLogger(name: str):
|
|
logger = logging.getLogger()
|
|
logger.propagate = False
|
|
return logger
|