You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by st...@apache.org on 2018/03/13 16:49:29 UTC

hive git commit: HIVE-18901: Lower ResourceDownloader Logging to Debug (Kryvenko Igor, reviewed by Sahil Takiar)

Repository: hive
Updated Branches:
  refs/heads/master ccc82cfb0 -> ed29b4ca9


HIVE-18901: Lower ResourceDownloader Logging to Debug (Kryvenko Igor, reviewed by Sahil Takiar)


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

Branch: refs/heads/master
Commit: ed29b4ca91475c24f77a64f2587f4d1972ab9119
Parents: ccc82cf
Author: Kryvenko Igor <kr...@gmail.com>
Authored: Tue Mar 13 09:49:04 2018 -0700
Committer: Sahil Takiar <st...@cloudera.com>
Committed: Tue Mar 13 09:49:04 2018 -0700

----------------------------------------------------------------------
 ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/ed29b4ca/ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java b/ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java
index d74e700..5c5aae5 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/util/ResourceDownloader.java
@@ -95,7 +95,7 @@ public class ResourceDownloader {
 
   private String downloadResource(URI srcUri, String subDir, boolean convertToUnix)
       throws IOException, URISyntaxException {
-    LOG.info("converting to local {}", srcUri);
+    LOG.debug("Converting to local {}", srcUri);
     File destinationDir = (subDir == null) ? resourceDir : new File(resourceDir, subDir);
     ensureDirectory(destinationDir);
     File destinationFile = new File(destinationDir, new Path(srcUri.toString()).getName());