Remove warn log from Session.execute

logging remains in protocol
This commit is contained in:
Adam Holmberg
2015-05-18 16:54:08 -05:00
parent 16f377cbfc
commit c8235aade9

View File

@@ -1438,8 +1438,6 @@ class Session(object):
future = self.execute_async(query, parameters, trace, custom_payload)
try:
result = future.result(timeout)
if future.warnings:
log.warning("Query returned warnings from the server. See cassandra.protocol log for details.")
finally:
if trace:
try: