You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by to...@apache.org on 2015/03/18 17:59:33 UTC

incubator-usergrid git commit: Fixes incorrect logging statement

Repository: incubator-usergrid
Updated Branches:
  refs/heads/USERGRID-490 c16bb0039 -> e6fb121a8


Fixes incorrect logging statement


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

Branch: refs/heads/USERGRID-490
Commit: e6fb121a8eeabb2ed0aa10b036c2dd0bd1e3f0b4
Parents: c16bb00
Author: Todd Nine <tn...@apigee.com>
Authored: Wed Mar 18 10:59:31 2015 -0600
Committer: Todd Nine <tn...@apigee.com>
Committed: Wed Mar 18 10:59:31 2015 -0600

----------------------------------------------------------------------
 .../usergrid/persistence/index/impl/EsEntityIndexImpl.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/e6fb121a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/impl/EsEntityIndexImpl.java
----------------------------------------------------------------------
diff --git a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/impl/EsEntityIndexImpl.java b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/impl/EsEntityIndexImpl.java
index cae9cb0..cecd297 100644
--- a/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/impl/EsEntityIndexImpl.java
+++ b/stack/corepersistence/queryindex/src/main/java/org/apache/usergrid/persistence/index/impl/EsEntityIndexImpl.java
@@ -273,14 +273,14 @@ public class EsEntityIndexImpl implements AliasedEntityIndex {
             //remove the write alias from it's target
             for ( String currentIndex : indexNames ) {
                 aliasesRequestBuilder.removeAlias( currentIndex, alias.getWriteAlias() );
-                logger.info("Removing existing write Alias Name [{}] from Index [{}]", alias.getReadAlias(), currentIndex);
+                logger.info("Removing existing write Alias Name [{}] from Index [{}]", alias.getWriteAlias(), currentIndex);
             }
 
             //Added For Graphite Metrics
 
             // add read alias
             aliasesRequestBuilder.addAlias(  indexName, alias.getReadAlias());
-            logger.info("Created new read Alias Name [{}] on Index [{}]", alias.getReadAlias(), indexName);
+            logger.info( "Created new read Alias Name [{}] on Index [{}]", alias.getReadAlias(), indexName);
 
 
             //add write alias