Logging 레벨 조절

import logging  
logging.basicConfig(level=logging.INFO)  
  
logging.info('This is an info message') 

2. Related

3. References