I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but tha
Better yet, disable propagate for boto:
propagate
import boto boto.set_file_logger('boto', 'logs/boto.log') logging.getLogger('boto').propagate = False