You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by dj...@apache.org on 2013/02/10 08:43:05 UTC

svn commit: r1444486 - /felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java

Author: djencks
Date: Sun Feb 10 07:43:05 2013
New Revision: 1444486

URL: http://svn.apache.org/r1444486
Log:
FELIX-3888 all the configuration settings in the config command

Modified:
    felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java

Modified: felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java
URL: http://svn.apache.org/viewvc/felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java?rev=1444486&r1=1444485&r2=1444486&view=diff
==============================================================================
--- felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java (original)
+++ felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ScrCommand.java Sun Feb 10 07:43:05 2013
@@ -455,6 +455,10 @@ public class ScrCommand implements ScrIn
         out.println(scrConfiguration.getLogLevel());
         out.print("Component Factory with Factory Configuration: ");
         out.println(scrConfiguration.isFactoryEnabled() ? "Supported" : "Unsupported");
+        out.print("Keep instances with no references: ");
+        out.println(scrConfiguration.keepInstances() ? "Supported" : "Unsupported");
+        out.print("Info Service registered: ");
+        out.println(scrConfiguration.infoAsService() ? "Supported" : "Unsupported");
     }
 
     private String toStateString(int state)