Files
insightface/detection/retinaface/rcnn/logger.py
2021-06-19 23:57:15 +08:00

7 lines
113 B
Python

import logging
# set up logger
logging.basicConfig()
logger = logging.getLogger()
logger.setLevel(logging.INFO)