You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:19:01 UTC

[sling-org-apache-sling-bundleresource-impl] 10/25: Fix error message to reflect actual task, which failed

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.bundleresource.impl-2.0.4-incubator
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-bundleresource-impl.git

commit 500240fd5efb1f8dd08b97f42b94377f8cc0a1ec
Author: Felix Meschberger <fm...@apache.org>
AuthorDate: Wed Sep 3 21:51:08 2008 +0000

    Fix error message to reflect actual task, which failed
    
    git-svn-id: https://svn.apache.org/repos/asf/incubator/sling/trunk/extensions/bundleresource@691801 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/bundleresource/impl/Activator.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/sling/bundleresource/impl/Activator.java b/src/main/java/org/apache/sling/bundleresource/impl/Activator.java
index f9a8f85..f44565a 100644
--- a/src/main/java/org/apache/sling/bundleresource/impl/Activator.java
+++ b/src/main/java/org/apache/sling/bundleresource/impl/Activator.java
@@ -59,8 +59,9 @@ public class Activator implements BundleActivator, BundleListener {
                 }
             }
         } 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 @@ public class Activator implements BundleActivator, BundleListener {
      * 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 @@ public class Activator implements BundleActivator, BundleListener {
         }
     }
 
-
 }

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.