You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2010/08/05 13:26:46 UTC

svn commit: r982546 - /felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java

Author: fmeschbe
Date: Thu Aug  5 11:26:46 2010
New Revision: 982546

URL: http://svn.apache.org/viewvc?rev=982546&view=rev
Log:
Add DEBUG message on starting the ComponentActorThread (for symmetry with the DEBUG message noting the imminent shutdown of the thread)

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

Modified: felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java
URL: http://svn.apache.org/viewvc/felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java?rev=982546&r1=982545&r2=982546&view=diff
==============================================================================
--- felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java (original)
+++ felix/trunk/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java Thu Aug  5 11:26:46 2010
@@ -62,6 +62,8 @@ class ComponentActorThread implements Ru
     // terminates.
     public void run()
     {
+        Activator.log( LogService.LOG_DEBUG, null, "Starting ComponentActorThread", null );
+
         for ( ;; )
         {
             final Runnable task;