You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by tm...@apache.org on 2019/08/11 19:12:21 UTC

[sling-org-apache-sling-distribution-journal] branch SLING-8620-1 created (now 19e27d8)

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

tmaret pushed a change to branch SLING-8620-1
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-journal.git.


      at 19e27d8  SLING-8620 - Journal Distribution discovery service should log topology changes at INFO level

This branch includes the following new commits:

     new 19e27d8  SLING-8620 - Journal Distribution discovery service should log topology changes at INFO level

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[sling-org-apache-sling-distribution-journal] 01/01: SLING-8620 - Journal Distribution discovery service should log topology changes at INFO level

Posted by tm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tmaret pushed a commit to branch SLING-8620-1
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-journal.git

commit 19e27d855dfa797861470f6d0190555afc515907
Author: tmaret <tm...@adobe.com>
AuthorDate: Thu Aug 8 09:59:23 2019 +0200

    SLING-8620 - Journal Distribution discovery service should log topology changes at INFO level
---
 .../sling/distribution/journal/impl/publisher/DiscoveryService.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/distribution/journal/impl/publisher/DiscoveryService.java b/src/main/java/org/apache/sling/distribution/journal/impl/publisher/DiscoveryService.java
index 9108497..af052a3 100644
--- a/src/main/java/org/apache/sling/distribution/journal/impl/publisher/DiscoveryService.java
+++ b/src/main/java/org/apache/sling/distribution/journal/impl/publisher/DiscoveryService.java
@@ -124,7 +124,7 @@ public class DiscoveryService implements Runnable {
         TopologyView oldView = viewManager.updateView();
         TopologyView newView = viewManager.getCurrentView();
         if (! newView.equals(oldView)) {
-            LOG.debug(String.format("TopologyView changed from %s to %s", oldView, newView));
+            LOG.info("TopologyView changed from {} to {}", oldView, newView);
             topologyChangeHandler.changed(oldView, newView);
         }
     }