Is there a way to suppress 'POST' messages to console when Boto makes a connection to do things like get_all_instances or connect_to_region, etc. ? e.g.
myReservations = myConnection.get_all_instances(filters={'tag-key' : tagKey})
This kicks out a big POST message:
send: 'POST / HTTP/1.1\r\nHost: ec2.us-west-1.amazonaws.com\r\nAccept-Encoding: identity\r\nContent-Length: 264\r\nContent-Type: application/x-www-form-urlencoded; charset=UTF-8\r\nUser-Agent: Boto/2.0 (linux2)\r\n\r\nAWSAccessKeyId=ACCESS_KEY_VALUE&Action=DescribeInstances&Filter.1.Name=tag-key&Filter.1.Value.1=stage&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2013-01-03T23%3A46%3A40Z&Version=2011-01-01&Signature=BLAHBLAHBLAHBLAH
I don't want to see this message. Nor the reply, nor the header messages.