Author: gnodet
Date: Tue Oct 18 21:11:23 2016
New Revision: 1765509

URL: http://svn.apache.org/viewvc?rev=1765509&view=rev
Log:
[FELIX-5380] Reduce quite useless log verbosity, keep log entries caused by 
modifying the data

Modified:
    
felix/trunk/configadmin/src/main/java/org/apache/felix/cm/impl/ConfigurationAdapter.java

Modified: 
felix/trunk/configadmin/src/main/java/org/apache/felix/cm/impl/ConfigurationAdapter.java
URL: 
http://svn.apache.org/viewvc/felix/trunk/configadmin/src/main/java/org/apache/felix/cm/impl/ConfigurationAdapter.java?rev=1765509&r1=1765508&r2=1765509&view=diff
==============================================================================
--- 
felix/trunk/configadmin/src/main/java/org/apache/felix/cm/impl/ConfigurationAdapter.java
 (original)
+++ 
felix/trunk/configadmin/src/main/java/org/apache/felix/cm/impl/ConfigurationAdapter.java
 Tue Oct 18 21:11:23 2016
@@ -82,8 +82,8 @@ public class ConfigurationAdapter implem
     {
         // CM 1.4 / 104.13.2.4
         final String bundleLocation = delegatee.getBundleLocation();
-        delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getBundleLocation() ==> {0}", new Object[]
-            { bundleLocation } );
+        //delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getBundleLocation() ==> {0}", new Object[]
+        //    { bundleLocation } );
         checkActive();
         configurationAdmin.checkPermission( 
delegatee.getConfigurationManager(), ( bundleLocation == null ) ? "*" : 
bundleLocation, true );
         checkDeleted();
@@ -148,7 +148,7 @@ public class ConfigurationAdapter implem
     @Override
     public Dictionary<String, Object> getProperties()
     {
-        delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getProperties()", ( Throwable ) null );
+        //delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getProperties()", ( Throwable ) null );
 
         checkDeleted();
 
@@ -161,7 +161,7 @@ public class ConfigurationAdapter implem
     @Override
     public long getChangeCount()
     {
-        delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getChangeCount()", ( Throwable ) null );
+        //delegatee.getConfigurationManager().log( LogService.LOG_DEBUG, 
"getChangeCount()", ( Throwable ) null );
 
         checkDeleted();
 


Reply via email to