Commit edc5cdeb by e0d

removing prints

parent 6a63f656
...@@ -92,9 +92,10 @@ class LifecycleHandler: ...@@ -92,9 +92,10 @@ class LifecycleHandler:
try: try:
output = subprocess.check_output(command.split(' ')) output = subprocess.check_output(command.split(' '))
logging.info("Output was {output}".format(output=output))
except Exception, e: except Exception, e:
print e logging.exception(e)
print output logging.error(output)
def get_ec2_instance_by_id(self,id): def get_ec2_instance_by_id(self,id):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment