This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.discovery.base-1.1.0 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-discovery-base.git
commit 1804fd3b4a0a5c94afb0a097e179c243a9c7ae9c Author: Stefan Egli <[email protected]> AuthorDate: Mon Nov 9 13:56:51 2015 +0000 no-jira : just some logger.debug messages fixed git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/extensions/discovery/base@1713433 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/discovery/base/commons/BaseViewChecker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java b/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java index 754bb18..dfee387 100644 --- a/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java +++ b/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java @@ -165,11 +165,11 @@ public abstract class BaseViewChecker implements ViewChecker, Runnable, StartupL @Override public void heartbeatAndCheckView() { - logger.debug("run: start. [for slingId="+slingId+"]"); + logger.debug("heartbeatAndCheckView: start. [for slingId="+slingId+"]"); synchronized(lock) { if (!activated) { // SLING:2895: avoid heartbeats if not activated - logger.debug("run: not activated yet"); + logger.debug("heartbeatAndCheckView: not activated yet"); return; } @@ -179,7 +179,7 @@ public abstract class BaseViewChecker implements ViewChecker, Runnable, StartupL // check the view doCheckView(); } - logger.debug("run: end. [for slingId="+slingId+"]"); + logger.debug("heartbeatAndCheckView: end. [for slingId="+slingId+"]"); } /** Trigger the issuance of the next heartbeat asap instead of at next heartbeat interval **/ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
