You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ti...@apache.org on 2021/09/07 14:42:14 UTC

[aries-typedevent] branch main updated: add whitespace in log

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

timothyjward pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/aries-typedevent.git


The following commit(s) were added to refs/heads/main by this push:
     new 7af44f9  add whitespace in log
7af44f9 is described below

commit 7af44f971115f45678072ac99ec1ad29875fb56f
Author: Stefan Bischof <st...@bipolis.org>
AuthorDate: Tue May 25 10:42:13 2021 +0200

    add whitespace in log
    
    Signed-off-by: Stefan Bischof <st...@bipolis.org>
---
 .../java/org/apache/aries/typedevent/bus/impl/TypedEventBusImpl.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/TypedEventBusImpl.java b/org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/TypedEventBusImpl.java
index 2802d75..4cb74e6 100644
--- a/org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/TypedEventBusImpl.java
+++ b/org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/TypedEventBusImpl.java
@@ -404,7 +404,7 @@ public class TypedEventBusImpl implements TypedEventBus {
 
             if (deliveryTasks.isEmpty()) {
                 // TODO log properly
-                System.out.println("Unhandled Event Handlers are being used for event sent to topic" + topic);
+                System.out.println("Unhandled Event Handlers are being used for event sent to topic " + topic);
                 deliveryTasks = unhandledEventHandlers.stream()
                         .map(handler -> new UnhandledEventTask(topic, convertibleEventData, handler)).collect(toList());
             }