Skip to content

Commit

Permalink
Fix log format. (apache#12346)
Browse files Browse the repository at this point in the history
  • Loading branch information
Technoboy- authored Oct 14, 2021
1 parent c1954e8 commit 240826a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public CompletableFuture<Consumer> subscribe(final TransportCnx cnx, String subs
} else if (ex.getCause() instanceof SubscriptionBusyException) {
log.warn("[{}][{}] {}", topic, subscriptionName, ex.getMessage());
} else {
log.error("[{}] Failed to create subscription: {} error: {}", topic, subscriptionName, ex);
log.error("[{}] Failed to create subscription: {}", topic, subscriptionName, ex);
}
return null;
});
Expand Down

0 comments on commit 240826a

Please sign in to comment.