====== Python: logging ====== * https://fangpenlin.com/posts/2012/08/26/good-logging-practice-in-python/ 특정 로거 중지 # 모든 로거 보기 import logging for key in logging.Logger.manager.loggerDict: print(key) # game 로거 끄기 logging.getLogger('game').setLevel(logging.CRITICAL) * https://stackoverflow.com/questions/11029717/how-do-i-disable-log-messages-from-the-requests-library