From notifications-return-4041-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Wed Jul 3 10:19:38 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 19A5D180109 for ; Wed, 3 Jul 2019 12:19:38 +0200 (CEST) Received: (qmail 88377 invoked by uid 500); 3 Jul 2019 10:19:37 -0000 Mailing-List: contact notifications-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list notifications@ignite.apache.org Received: (qmail 88368 invoked by uid 99); 3 Jul 2019 10:19:37 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Jul 2019 10:19:37 +0000 From: GitBox To: notifications@ignite.apache.org Subject: [GitHub] [ignite] vmalin commented on a change in pull request #6661: IGNITE-11954 Message-ID: <156214917742.30080.10999910577535420624.gitbox@gitbox.apache.org> Date: Wed, 03 Jul 2019 10:19:37 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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