You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by db...@apache.org on 2016/11/23 23:14:33 UTC

cassandra git commit: fix logging context

Repository: cassandra
Updated Branches:
  refs/heads/trunk b0f51cecb -> ac2a0a5f8


fix logging context


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/ac2a0a5f
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/ac2a0a5f
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/ac2a0a5f

Branch: refs/heads/trunk
Commit: ac2a0a5f812fdfe8d98c1438712382d796907131
Parents: b0f51ce
Author: Dave Brosius <db...@mebigfatguy.com>
Authored: Wed Nov 23 18:14:11 2016 -0500
Committer: Dave Brosius <db...@mebigfatguy.com>
Committed: Wed Nov 23 18:14:11 2016 -0500

----------------------------------------------------------------------
 src/java/org/apache/cassandra/repair/AnticompactionTask.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/ac2a0a5f/src/java/org/apache/cassandra/repair/AnticompactionTask.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/cassandra/repair/AnticompactionTask.java b/src/java/org/apache/cassandra/repair/AnticompactionTask.java
index bc09b38..6e6bb65 100644
--- a/src/java/org/apache/cassandra/repair/AnticompactionTask.java
+++ b/src/java/org/apache/cassandra/repair/AnticompactionTask.java
@@ -54,7 +54,7 @@ public class AnticompactionTask extends AbstractFuture<InetAddress> implements R
      * If Cassandra version is more than this, we need to wait for anticompaction response.
      */
     private static final CassandraVersion VERSION_CHECKER = new CassandraVersion("2.1.5");
-    private static Logger logger = LoggerFactory.getLogger(RepairSession.class);
+    private static Logger logger = LoggerFactory.getLogger(AnticompactionTask.class);
 
     private final UUID parentSession;
     private final InetAddress neighbor;