10 lines
		
	
	
		
			308 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			308 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| import logging
 | |
| 
 | |
| # Disable extra logging for tests
 | |
| logging.getLogger("boto").setLevel(logging.CRITICAL)
 | |
| logging.getLogger("boto3").setLevel(logging.CRITICAL)
 | |
| logging.getLogger("botocore").setLevel(logging.CRITICAL)
 | |
| logging.getLogger("nose").setLevel(logging.CRITICAL)
 |