This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 5e6a39b1696 Polished
5e6a39b1696 is described below
commit 5e6a39b16964ffd6a09fea1eb5bb333f887ba9c2
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jul 1 12:52:58 2022 +0200
Polished
---
.../main/java/org/apache/camel/impl/engine/AbstractCamelContext.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
index ebbdb77e7aa..6bd6a8e816c 100644
---
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
+++
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java
@@ -3386,9 +3386,9 @@ public abstract class AbstractCamelContext extends
BaseService
long timeout =
shutdownStrategy.getTimeUnit().toMillis(shutdownStrategy.getTimeout());
// only use precise print duration if timeout is shorter than
10 seconds
String to = TimeUtils.printDuration(timeout, timeout < 10000);
- LOG.info("Apache Camel {} ({}) shutting down (timeout:{})",
getVersion(), getName(), to);
+ LOG.info("Apache Camel {} ({}) is shutting down (timeout:{})",
getVersion(), getName(), to);
} else {
- LOG.info("Apache Camel {} ({}) shutting down", getVersion(),
getName());
+ LOG.info("Apache Camel {} ({}) is shutting down",
getVersion(), getName());
}
}