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/08 07:59:42 UTC

[sling-org-apache-sling-distribution-journal] branch SLING-8620 created (now 9fd39fa)

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

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


      at 9fd39fa  SLING-8620 - Journal Distribution discovery service should log topology changes at INFO level

This branch includes the following new commits:

     new 9fd39fa  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
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-journal.git

commit 9fd39fa45fc23585bf788bf43099b7abb856d2cd
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..ef09b40 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(String.format("TopologyView changed from %s to %s", oldView, newView));
             topologyChangeHandler.changed(oldView, newView);
         }
     }