Skip to content
Snippets Groups Projects
Commit d43c993b authored by Mike Petersen's avatar Mike Petersen
Browse files

[Cassandra] removed tracing from insert

parent 34420257
No related branches found
No related tags found
No related merge requests found
...@@ -427,7 +427,7 @@ public class CassandraCQLClient extends DB { ...@@ -427,7 +427,7 @@ public class CassandraCQLClient extends DB {
insertStmt.value(entry.getKey(), value); insertStmt.value(entry.getKey(), value);
} }
insertStmt.setConsistencyLevel(writeConsistencyLevel).enableTracing(); insertStmt.setConsistencyLevel(writeConsistencyLevel);
if (debug) { if (debug) {
System.out.println(insertStmt.toString()); System.out.println(insertStmt.toString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment