summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch.Garnaat <Mitch.Garnaat@604d75c7-a419-0410-a38f-bde1a0bd1dbf>2009-12-05 03:14:46 +0000
committerMitch.Garnaat <Mitch.Garnaat@604d75c7-a419-0410-a38f-bde1a0bd1dbf>2009-12-05 03:14:46 +0000
commit9bfe773713cc7503e7a4d65d061fd1c91c69bf7e (patch)
tree58786c1a7f223f9d463aa6d6fe55a28ca29a4bc5
parent07c307c4f7d43fd8ae98e720919b325e1f037239 (diff)
downloadboto-9bfe773713cc7503e7a4d65d061fd1c91c69bf7e.tar.gz
Removing debug=2 on initialization
-rw-r--r--boto/ec2/connection.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/boto/ec2/connection.py b/boto/ec2/connection.py
index 36ff5b0d..ae458639 100644
--- a/boto/ec2/connection.py
+++ b/boto/ec2/connection.py
@@ -44,8 +44,6 @@ from boto.ec2.instanceinfo import InstanceInfo
from boto.ec2.reservedinstance import ReservedInstancesOffering, ReservedInstance
from boto.exception import EC2ResponseError
-boto.set_stream_logger('ec2')
-
class EC2Connection(AWSQueryConnection):
APIVersion = boto.config.get('Boto', 'ec2_version', '2009-10-31')
@@ -57,7 +55,7 @@ class EC2Connection(AWSQueryConnection):
def __init__(self, aws_access_key_id=None, aws_secret_access_key=None,
is_secure=True, host=None, port=None, proxy=None, proxy_port=None,
- proxy_user=None, proxy_pass=None, debug=2,
+ proxy_user=None, proxy_pass=None, debug=0,
https_connection_factory=None, region=None, path='/'):
"""
Init method to create a new connection to EC2.