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 <[email protected]> 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 "[email protected]" <[email protected]>.
