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:43:06 UTC

[sling-org-apache-sling-installer-hc] 04/09: SLING-5888 - clearer (I think) log messages

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

rombert pushed a commit to annotated tag org.apache.sling.installer.hc-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-installer-hc.git

commit 4f4ee4e13afcfc59258900222611f09a5f47b41f
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Aug 22 06:53:52 2016 +0000

    SLING-5888 - clearer (I think) log messages
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/installer/hc@1757111 13f79535-47bb-0310-9956-ffa450edef68
---
 .../java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java b/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
index f1eaa95..3fd4f99 100644
--- a/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
+++ b/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
@@ -118,13 +118,13 @@ public class OsgiInstallerHealthCheck implements HealthCheck {
             switch (resourceType) {
             case InstallableResource.TYPE_CONFIG:
                 if (!checkConfigurations) {
-                    LOG.debug("Skip resource '{}' as it is a configuration", resource.getEntityId());
+                    LOG.debug("Skip resource '{}', configuration checks are disabled", resource.getEntityId());
                     return "";
                 }
                 break;
             case InstallableResource.TYPE_BUNDLE:
                 if (!checkBundles) {
-                    LOG.debug("Skip resource '{}' as it is a bundle", resource.getEntityId());
+                    LOG.debug("Skip resource '{}', bundle checks are disabled", resource.getEntityId());
                     return "";
                 }
                 break;

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