You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2021/04/14 06:08:06 UTC

[camel-quarkus] branch main updated: Upper case Bootstrap #2164

This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 03ec238  Upper case Bootstrap #2164
03ec238 is described below

commit 03ec238c26569d66f991fb8efd5cf6dde469ca1f
Author: Tom Cunningham <tc...@redhat.com>
AuthorDate: Tue Apr 13 15:05:11 2021 -0400

    Upper case Bootstrap #2164
---
 .../main/java/org/apache/camel/quarkus/core/CamelBootstrapRecorder.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelBootstrapRecorder.java b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelBootstrapRecorder.java
index f04799f..f30d7b6 100644
--- a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelBootstrapRecorder.java
+++ b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelBootstrapRecorder.java
@@ -41,7 +41,7 @@ public class CamelBootstrapRecorder {
     public void start(RuntimeValue<CamelRuntime> runtime, Supplier<String[]> arguments) {
         try {
             Logger logger = Logger.getLogger(CamelBootstrapRecorder.class);
-            logger.infof("bootstrap runtime: %s", runtime.getValue().getClass().getName());
+            logger.infof("Bootstrap runtime: %s", runtime.getValue().getClass().getName());
             runtime.getValue().start(arguments.get());
         } catch (Exception e) {
             throw new RuntimeException(e);