Author: cdouglas
Date: Sat Oct 17 00:22:39 2009
New Revision: 826141

URL: http://svn.apache.org/viewvc?rev=826141&view=rev
Log:
HADOOP-6312. Remove unnecessary debug logging in Configuration constructor. 
Contributed by Aaron Kimball

Modified:
    hadoop/common/trunk/CHANGES.txt
    hadoop/common/trunk/src/java/org/apache/hadoop/conf/Configuration.java

Modified: hadoop/common/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/CHANGES.txt?rev=826141&r1=826140&r2=826141&view=diff
==============================================================================
--- hadoop/common/trunk/CHANGES.txt (original)
+++ hadoop/common/trunk/CHANGES.txt Sat Oct 17 00:22:39 2009
@@ -27,6 +27,9 @@
     HADOOP-6204. Implementing aspects development and fault injeciton
     framework for Hadoop (cos)
 
+    HADOOP-6312. Remove unnecessary debug logging in Configuration constructor.
+    (Aaron Kimball via cdouglas)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: hadoop/common/trunk/src/java/org/apache/hadoop/conf/Configuration.java
URL: 
http://svn.apache.org/viewvc/hadoop/common/trunk/src/java/org/apache/hadoop/conf/Configuration.java?rev=826141&r1=826140&r2=826141&view=diff
==============================================================================
--- hadoop/common/trunk/src/java/org/apache/hadoop/conf/Configuration.java 
(original)
+++ hadoop/common/trunk/src/java/org/apache/hadoop/conf/Configuration.java Sat 
Oct 17 00:22:39 2009
@@ -383,9 +383,6 @@
    */
   public Configuration(boolean loadDefaults) {
     this.loadDefaults = loadDefaults;
-    if (LOG.isDebugEnabled()) {
-      LOG.debug(StringUtils.stringifyException(new IOException("config()")));
-    }
     synchronized(Configuration.class) {
       REGISTRY.put(this, null);
     }
@@ -415,11 +412,6 @@
    */
   @SuppressWarnings("unchecked")
   public Configuration(Configuration other) {
-    if (LOG.isDebugEnabled()) {
-      LOG.debug(StringUtils.stringifyException
-                (new IOException("config(config)")));
-    }
-   
    this.resources = (ArrayList)other.resources.clone();
    synchronized(other) {
      if (other.properties != null) {


Reply via email to