You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by is...@apache.org on 2017/01/04 20:53:43 UTC

lucene-solr:jira/solr-5944: SOLR-5944: Removing spurious logging message

Repository: lucene-solr
Updated Branches:
  refs/heads/jira/solr-5944 77ec5ede0 -> 0213b10a1


SOLR-5944: Removing spurious logging message


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/0213b10a
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/0213b10a
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/0213b10a

Branch: refs/heads/jira/solr-5944
Commit: 0213b10a1bebb6186ba5b72ecdfec77c09dfd6f6
Parents: 77ec5ed
Author: Ishan Chattopadhyaya <is...@apache.org>
Authored: Thu Jan 5 02:23:30 2017 +0530
Committer: Ishan Chattopadhyaya <is...@apache.org>
Committed: Thu Jan 5 02:23:30 2017 +0530

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/update/UpdateLog.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0213b10a/solr/core/src/java/org/apache/solr/update/UpdateLog.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/UpdateLog.java b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
index 69c2033..87833eb 100644
--- a/solr/core/src/java/org/apache/solr/update/UpdateLog.java
+++ b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
@@ -1560,7 +1560,6 @@ public static final int VERSION_IDX = 1;
 
             // should currently be a List<Oper,Ver,Doc/Id>
             List entry = (List) o;
-            log.info("HELLO: "+entry);
             operationAndFlags = (Integer) entry.get(UpdateLog.FLAGS_IDX);
             int oper = operationAndFlags & OPERATION_MASK;
             long version = (Long) entry.get(UpdateLog.VERSION_IDX);