lburgazzoli commented on code in PR #1185: URL: https://github.com/apache/camel-k-runtime/pull/1185#discussion_r1530073885
########## support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java: ########## @@ -526,6 +545,18 @@ private void addCapabilities(RuntimeSpec.Builder runtimeSpec, CamelCatalogSpec.B artifacts.add(Artifact.from("org.apache.camel.quarkus", "camel-quarkus-jaxb")); artifacts.add(Artifact.from("org.jolokia", "jolokia-agent-jvm", "javaagent")); addCapabilityAndDependecies(runtimeSpec, catalogSpec, "jolokia", artifacts, true); + + properties.clear(); + properties.add(Property.from("level", "quarkus.log.level")); + properties.add(Property.from("color", "quarkus.console.color")); + properties.add(Property.from("format", "quarkus.log.console.format")); + properties.add(Property.from("json", "quarkus.log.console.json")); + properties.add(Property.from("jsonPrettyPrint", "quarkus.log.console.json.pretty-print")); Review Comment: I don't see a json logging option in spring-boot https://docs.spring.io/spring-boot/docs/3.0.0/reference/htmlsingle/#features.logging, it seems that to enable json logging one has to use a backend specific logging configuration -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org