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-kamelets-examples.git
The following commit(s) were added to refs/heads/main by this push:
new dff1968 CAMEL-20721: camel-jbang - Make it possible to set
logging-level per package individually from CLI
dff1968 is described below
commit dff196858395e449cc2dcc5229e46d7bf9a85545
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Apr 29 11:45:19 2024 +0200
CAMEL-20721: camel-jbang - Make it possible to set logging-level per
package individually from CLI
---
jbang/kafka-health/application.properties | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/jbang/kafka-health/application.properties
b/jbang/kafka-health/application.properties
new file mode 100644
index 0000000..34147d8
--- /dev/null
+++ b/jbang/kafka-health/application.properties
@@ -0,0 +1,9 @@
+# configuration file
+
+# make it easy to configure individual logging levels
+logging.level.org.apache.kafka = DEBUG
+logging.level.org.apache.camel.component.kafka = TRACE
+
+# you can also use quarkus style naming
+# quarkus.log.category."org.apache.kafka".level=DEBUG
+# quarkus.log.category."org.apache.camel.component.kafka".level=DEBUG