1 2 3 4 5 6 7 8 9 10 11 | import logging logging.basicConfig(format='%(asctime)s,%(msecs)d %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s', datefmt='%d-%m-%Y:%H:%M:%S', level=logging.DEBUG) logger = logging.getLogger('log_1') logger.debug("This is a debug log") logger.info("This is an info log") logger.critical("This is critical") logger.error("An error occurred") | cs |
'인터넷/모바일 > 머신러닝' 카테고리의 다른 글
anaconda 환경에서 ImportError: No module named pandas 해결법. (0) | 2019.08.07 |
---|---|
conda create 할 때에 https (SSL) 관련 에러가 나는 경우의 해결 방법 #2 (0) | 2019.08.06 |
google dialogflow 사용을 위한 python flask 사용 및 linux 방화벽 세팅 (0) | 2018.11.09 |
pycharm에서 torch 인스톨 (0) | 2018.07.10 |
아나콘다 환경에서 pip install module 할 때에 utf-8 관련 에러 해결 방법. (0) | 2018.07.05 |