Skip to content

Commit

Permalink
fixed info log for successfully unsubscribing from pubSub;
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Maute <stefan.maute@bosch.io>
  • Loading branch information
Stefan Maute committed Sep 26, 2022
1 parent d39bf5f commit a640f5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ private void serviceUnbind(final Control serviceUnbind) {
getSelf()), SHUTDOWN_ASK_TIMEOUT)
.toCompletableFuture()
.thenApply(ack -> {
log.info("{} unsubscribed successfully from pubsub for {} actor", ACTOR_NAME);
log.info("Unsubscribed successfully from pubsub for {} actor", ACTOR_NAME);
return Done.getInstance();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ private void serviceUnbind(final Control serviceUnbind) {
self), SHUTDOWN_ASK_TIMEOUT)
.toCompletableFuture())
.thenApply(ack -> {
logger.info("{} unsubscribed successfully from pubsub for {} actor", getActorName());
logger.info("Unsubscribed successfully from pubsub for {} actor", getActorName());
return Done.getInstance();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void serviceUnbind(final Control serviceUnbind) {
SHUTDOWN_ASK_TIMEOUT)
.toCompletableFuture())
.thenApply(ack -> {
log.info("{} unsubscribed successfully from pubsub for {} actor", ACTOR_NAME);
log.info("Unsubscribed successfully from pubsub for {} actor", ACTOR_NAME);
return Done.getInstance();
});

Expand Down

0 comments on commit a640f5f

Please sign in to comment.