squakez commented on code in PR #1185: URL: https://github.com/apache/camel-k-runtime/pull/1185#discussion_r1530093408
########## 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: Correct. Same comment as with the above telemetry capability. -- 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