-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFE] Allow to set log level of a specific package using logging trait #3974
Comments
This issue has been automatically marked as stale due to 90 days of inactivity. |
I can take a look at this |
We can mimick route trait configuration where we have:
and develop something similar with:
|
@realMartinez @claudio4j what's the status of this? are you going to work on it and include in 2.4 milestone? |
@realMartinez The previous PR #5279 was declined, since the environment variables were deprecated, but you can use the same code to create the jvm option instead of the environment variable, however to add the new |
sure I can take a look at this. |
Currently, we need to set log level of a specific package using property, i.e.:
kamel run -p quarkus.log.category.”org.test”.level=DEBUG
It would be nice if we could utilize logging trait for this in some way. i.e.:
kamel run --trait logging."org.test"=DEBUG
This would allow logging to be configured in a consistent way.
The text was updated successfully, but these errors were encountered: