Add DEBUG message on starting the ComponentActorThread (for symmetry with the DEBUG message noting the imminent shutdown of the thread)

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@982546 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java b/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java
index 2080563..144e953 100644
--- a/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java
+++ b/scr/src/main/java/org/apache/felix/scr/impl/ComponentActorThread.java
@@ -62,6 +62,8 @@
     // terminates.
     public void run()
     {
+        Activator.log( LogService.LOG_DEBUG, null, "Starting ComponentActorThread", null );
+
         for ( ;; )
         {
             final Runnable task;