You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2019/07/03 10:19:37 UTC

[GitHub] [ignite] vmalin commented on a change in pull request #6661: IGNITE-11954

vmalin commented on a change in pull request #6661: IGNITE-11954
URL: https://github.com/apache/ignite/pull/6661#discussion_r299883684
 
 

 ##########
 File path: modules/core/src/main/java/org/apache/ignite/internal/commandline/cache/CacheValidateIndexes.java
 ##########
 @@ -186,20 +189,20 @@ public UUID nodeId() {
                     ValidateIndexesPartitionResult res = e.getValue();
 
                     if (!res.issues().isEmpty()) {
-                        logger.logWithIndent(CommandLogger.join(" ", "SQL Index", e.getKey(), e.getValue()));
+                        logger.info(INDENT + CommandLogger.join(" ", "SQL Index", e.getKey(), e.getValue()));
 
                         for (IndexValidationIssue is : res.issues())
-                            logger.logWithIndent(is, 2);
+                            logger.info(DOUBLE_INDENT + is);
                     }
                 }
             }
 
             if (!errors)
-                logger.log("no issues found.");
+                logger.severe("no issues found.");
 
 Review comment:
   fixed

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services