You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by ca...@codespot.com on 2011/11/08 21:34:24 UTC

[cassandra-node] push by gdusbabek@gmail.com - log CQL queries at trace1 on 2011-11-08 20:33 GMT

Revision: 4dc7628eaf1a
Author:   gdusbabek <gd...@gmail.com>
Date:     Tue Nov  8 12:33:50 2011
Log:      log CQL queries at trace1

http://code.google.com/a/apache-extras.org/p/cassandra-node/source/detail?r=4dc7628eaf1a

Modified:
  /lib/driver.js

=======================================
--- /lib/driver.js	Fri Oct 28 09:39:13 2011
+++ /lib/driver.js	Tue Nov  8 12:33:50 2011
@@ -453,6 +453,7 @@
      callback(new Error(nullBindError.message));
    } else {
      var self = this;
+    log.trace1('CQL QUERY: ' + cql);
      this.client.execute_cql_query(cql, ttypes.Compression.NONE,  
function(err, res) {
        if (err) {
          amendError(err);