You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2008/09/03 23:51:08 UTC

svn commit: r691801 - /incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java

Author: fmeschbe
Date: Wed Sep  3 14:51:08 2008
New Revision: 691801

URL: http://svn.apache.org/viewvc?rev=691801&view=rev
Log:
Fix error message to reflect actual task, which failed

Modified:
    incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java

Modified: incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java?rev=691801&r1=691800&r2=691801&view=diff
==============================================================================
--- incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java (original)
+++ incubator/sling/trunk/extensions/bundleresource/src/main/java/org/apache/sling/bundleresource/impl/Activator.java Wed Sep  3 14:51:08 2008
@@ -59,8 +59,9 @@
                 }
             }
         } catch (Throwable t) {
-            log.error("activate: Problem while loading initial content and"
-                + " registering mappings for existing bundles", t);
+            log.error(
+                "activate: Problem while registering bundle resources for existing bundles",
+                t);
         }
     }
 
@@ -73,7 +74,7 @@
      * Loads and unloads any components provided by the bundle whose state
      * changed. If the bundle has been started, the components are loaded. If
      * the bundle is about to stop, the components are unloaded.
-     *
+     * 
      * @param event The <code>BundleEvent</code> representing the bundle state
      *            change.
      */
@@ -111,5 +112,4 @@
         }
     }
 
-
 }