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 2021/08/24 14:07:24 UTC

[sling-org-apache-sling-discovery-base] branch master updated: SLING-10489 related : lowered a log.info to debug as it is a bit superfluous (#6)

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

stefanegli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-discovery-base.git


The following commit(s) were added to refs/heads/master by this push:
     new 98b3659  SLING-10489 related : lowered a log.info to debug as it is a bit superfluous (#6)
98b3659 is described below

commit 98b3659bce92bb3644b2962cd258b5bec7291907
Author: stefan-egli <st...@apache.org>
AuthorDate: Tue Aug 24 16:07:18 2021 +0200

    SLING-10489 related : lowered a log.info to debug as it is a bit superfluous (#6)
---
 .../java/org/apache/sling/discovery/base/commons/BaseViewChecker.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 1eaf2a3..9cacb79 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
@@ -176,7 +176,7 @@ public abstract class BaseViewChecker implements ViewChecker, Runnable {
             // use 'fireJobAt' here, instead of 'fireJob' to make sure the job can always be triggered
             // 'fireJob' checks for a job from the same job-class to already exist
             // 'fireJobAt' though allows to pass a name for the job - which can be made unique, thus does not conflict/already-exist
-            logger.info("triggerAsyncConnectorPing: firing job to trigger heartbeat");
+            logger.debug("triggerAsyncConnectorPing: firing job to trigger heartbeat");
             getScheduler().schedule(this, getScheduler().NOW().name(NAME+UUID.randomUUID()));
         } catch (Exception e) {
             logger.info("triggerAsyncConnectorPing: Could not trigger heartbeat: " + e);