You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by st...@apache.org on 2015/11/09 14:56:52 UTC

svn commit: r1713433 - /sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java

Author: stefanegli
Date: Mon Nov  9 13:56:51 2015
New Revision: 1713433

URL: http://svn.apache.org/viewvc?rev=1713433&view=rev
Log:
no-jira : just some logger.debug messages fixed

Modified:
    sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java

Modified: sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java?rev=1713433&r1=1713432&r2=1713433&view=diff
==============================================================================
--- sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java (original)
+++ sling/trunk/bundles/extensions/discovery/base/src/main/java/org/apache/sling/discovery/base/commons/BaseViewChecker.java Mon Nov  9 13:56:51 2015
@@ -165,11 +165,11 @@ public abstract class BaseViewChecker im
     
     @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 im
             // 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 **/