This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch uc in repository https://gitbox.apache.org/repos/asf/camel.git
commit 8b98ffb3e9d9e96d86a4edd349afa410d3a46961 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Jun 22 14:33:23 2024 +0200 CAMEL-20879: camel-core: remote vs local endpoints counters --- .../main/java/org/apache/camel/impl/console/EndpointDevConsole.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/camel-console/src/main/java/org/apache/camel/impl/console/EndpointDevConsole.java b/core/camel-console/src/main/java/org/apache/camel/impl/console/EndpointDevConsole.java index e3605e58b55..6475ec32ff0 100644 --- a/core/camel-console/src/main/java/org/apache/camel/impl/console/EndpointDevConsole.java +++ b/core/camel-console/src/main/java/org/apache/camel/impl/console/EndpointDevConsole.java @@ -63,7 +63,8 @@ public class EndpointDevConsole extends AbstractDevConsole { var stat = findStats(stats, e.getEndpointUri()); if (stat.isPresent()) { var st = stat.get(); - sb.append(String.format("\n %s (remote: %s direction: %s, usage: %s)", uri, remote, st.getDirection(), st.getHits())); + sb.append(String.format("\n %s (remote: %s direction: %s, usage: %s)", uri, remote, st.getDirection(), + st.getHits())); } else { sb.append(String.format("\n %s (remote: %s)", uri, remote)); }