This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.
from 6a34c50 Sync Properties
new 9f5f040 camel-core - Optimize and move internal route controller to
own class and make it final
new 8bdecc9 camel-core - Move some of the complex route startup logic to
its own class outside AbstractCamelContext
new 284f31e CAMEL-15045: Allow to configure route startup logging level.
For example if you have 100+ routes it may be annoying with a log per route.
new f721dec CAMEL-15045: Allow to configure route startup logging level.
For example if you have 100+ routes it may be annoying with a log per route.
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../java/org/apache/camel/spi/RouteController.java | 13 +
.../camel/impl/engine/AbstractCamelContext.java | 460 +--------------------
.../camel/impl/engine/DefaultRouteController.java | 13 +
.../camel/impl/engine/InternalRouteController.java | 134 ++++++
.../impl/engine/InternalRouteStartupManager.java | 415 +++++++++++++++++++
.../impl/lw/LightweightRuntimeCamelContext.java | 11 +
...Test.java => RouteStartupLoggingLevelTest.java} | 6 +-
.../MainConfigurationPropertiesConfigurer.java | 5 +
.../camel-main-configuration-metadata.json | 1 +
.../camel/main/DefaultConfigurationConfigurer.java | 3 +
.../camel/main/DefaultConfigurationProperties.java | 24 ++
.../main/MainSupervisingRouteControllerTest.java | 4 +-
.../mbean/ManagedRouteControllerMBean.java | 3 +
.../management/mbean/ManagedRouteController.java | 9 +
.../mbean/ManagedSupervisingRouteController.java | 9 +
15 files changed, 662 insertions(+), 448 deletions(-)
create mode 100644
core/camel-base/src/main/java/org/apache/camel/impl/engine/InternalRouteController.java
create mode 100644
core/camel-base/src/main/java/org/apache/camel/impl/engine/InternalRouteStartupManager.java
copy
core/camel-core/src/test/java/org/apache/camel/processor/{LogGlobalLogNameTest.java
=> RouteStartupLoggingLevelTest.java} (84%)