You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2012/11/01 17:45:00 UTC

svn commit: r1404692 - in /incubator/hcatalog/trunk: CHANGES.txt src/java/org/apache/hcatalog/common/HiveClientCache.java

Author: travis
Date: Thu Nov  1 17:45:00 2012
New Revision: 1404692

URL: http://svn.apache.org/viewvc?rev=1404692&view=rev
Log:
HCATALOG-532 HiveClientCache shutdown hook should log at debug level

Modified:
    incubator/hcatalog/trunk/CHANGES.txt
    incubator/hcatalog/trunk/src/java/org/apache/hcatalog/common/HiveClientCache.java

Modified: incubator/hcatalog/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1404692&r1=1404691&r2=1404692&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Thu Nov  1 17:45:00 2012
@@ -44,6 +44,8 @@ Trunk (unreleased changes)
   HCAT-427 Document storage-based authorization (lefty via gates)
 
   IMPROVEMENTS
+  HCAT-532 HiveClientCache shutdown hook should log at debug level (traviscrawford)
+
   HCAT-528 ivysettings.xml does not let you override .m2/repository or ivy.cache.dir setting (raja@cmbasics.com via traviscrawford)
 
   HCAT-516 HCOF should use less generic parameters (nitay via traviscrawford)

Modified: incubator/hcatalog/trunk/src/java/org/apache/hcatalog/common/HiveClientCache.java
URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/src/java/org/apache/hcatalog/common/HiveClientCache.java?rev=1404692&r1=1404691&r2=1404692&view=diff
==============================================================================
--- incubator/hcatalog/trunk/src/java/org/apache/hcatalog/common/HiveClientCache.java (original)
+++ incubator/hcatalog/trunk/src/java/org/apache/hcatalog/common/HiveClientCache.java Thu Nov  1 17:45:00 2012
@@ -99,7 +99,7 @@ class HiveClientCache {
         Thread cleanupHiveClientShutdownThread = new Thread() {
             @Override
             public void run() {
-                LOG.info("Cleaning up hive client cache in ShutDown hook");
+                LOG.debug("Cleaning up hive client cache in ShutDown hook");
                 closeAllClientsQuietly();
             }
         };