Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 84D82200D71 for ; Thu, 21 Dec 2017 06:02:05 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8346F160C18; Thu, 21 Dec 2017 05:02:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 67994160C15 for ; Thu, 21 Dec 2017 06:02:04 +0100 (CET) Received: (qmail 29861 invoked by uid 500); 21 Dec 2017 05:02:03 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 29850 invoked by uid 99); 21 Dec 2017 05:02:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Dec 2017 05:02:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 9C52AC4499 for ; Thu, 21 Dec 2017 05:02:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.211 X-Spam-Level: X-Spam-Status: No, score=-99.211 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id aQ0g4bq_9d5y for ; Thu, 21 Dec 2017 05:02:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 527CB5F1EE for ; Thu, 21 Dec 2017 05:02:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 89DC9E04F4 for ; Thu, 21 Dec 2017 05:02:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 17648240DA for ; Thu, 21 Dec 2017 05:02:00 +0000 (UTC) Date: Thu, 21 Dec 2017 05:02:00 +0000 (UTC) From: "Heng Li (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HADOOP-13485) Log refactoring: method invocation should be replaced by variable in hadoop tools MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 21 Dec 2017 05:02:05 -0000 [ https://issues.apache.org/jira/browse/HADOOP-13485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16299558#comment-16299558 ] Heng Li commented on HADOOP-13485: ---------------------------------- Thanks [~xiaochen]. Yeah, I think it's better to combine them into one log line: {code:java} LOG.debug("NativeAzureFileSystem initializing. blockSize = {}", this.blockSize); {code} BTW, could you please add "henglicad" instead of my old username (my email address) as a contributor? I feel it's not good to spam the email address everywhere (sorry my mistake). Hi [~vrushalic], would you update the patch? Otherwise I'll upload a patch here. > Log refactoring: method invocation should be replaced by variable in hadoop tools > --------------------------------------------------------------------------------- > > Key: HADOOP-13485 > URL: https://issues.apache.org/jira/browse/HADOOP-13485 > Project: Hadoop Common > Issue Type: Bug > Components: tools > Affects Versions: 2.7.2 > Reporter: Nemo Chen > Labels: easy > Attachments: HADOOP-13485.001.patch > > > Similar to the fix for HDFS-409. In file: > hadoop-rel-release-2.7.2/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azure/NativeAzureFileSystem.java > {code:borderStyle=solid} > this.blockSize = conf.getLong(AZURE_BLOCK_SIZE_PROPERTY_NAME, > MAX_AZURE_BLOCK_SIZE); > if (LOG.isDebugEnabled()) { > LOG.debug("NativeAzureFileSystem. Initializing."); > LOG.debug(" blockSize = " > + conf.getLong(AZURE_BLOCK_SIZE_PROPERTY_NAME, MAX_AZURE_BLOCK_SIZE)); > } > {code} > For simplicity and readability, the {{conf.getLong(AZURE_BLOCK_SIZE_PROPERTY_NAME, MAX_AZURE_BLOCK_SIZE))}} should be changed to {{this.blockSize}}. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-issues-help@hadoop.apache.org