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/05/06 18:21:58 UTC

[sling-org-apache-sling-distribution-journal] branch master updated: SLING-8397 - Log command topic upon Topics service activation

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2a6e683  SLING-8397 - Log command topic upon Topics service activation
2a6e683 is described below

commit 2a6e6838b90927d789be05311f961b07ecd63e89
Author: tmaret <tm...@adobe.com>
AuthorDate: Mon May 6 20:21:06 2019 +0200

    SLING-8397 - Log command topic upon Topics service activation
---
 .../org/apache/sling/distribution/journal/impl/shared/Topics.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/sling/distribution/journal/impl/shared/Topics.java b/src/main/java/org/apache/sling/distribution/journal/impl/shared/Topics.java
index 7a1dfb6..870813b 100644
--- a/src/main/java/org/apache/sling/distribution/journal/impl/shared/Topics.java
+++ b/src/main/java/org/apache/sling/distribution/journal/impl/shared/Topics.java
@@ -60,8 +60,8 @@ public class Topics {
         this.statusTopic = config.statusTopic();
         this.commandTopic = config.commandTopic();
         this.eventTopic = config.eventTopic();
-        LOG.info(String.format("Topics service started with packageTopic '%s' discoveryTopic '%s' statusTopic '%s' eventTopic '%s'",
-                packageTopic, discoveryTopic, statusTopic, eventTopic));
+        LOG.info(String.format("Topics service started with packageTopic '%s' discoveryTopic '%s' statusTopic '%s' eventTopic '%s' commandTopic '%s'",
+                packageTopic, discoveryTopic, statusTopic, eventTopic, commandTopic));
     }
     
     public String getPackageTopic() {