You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add documentation on how to set the log level of the Consumer? We'd like to log WARN and higher, we find that INFO is too verbose for us.
The text was updated successfully, but these errors were encountered:
Thank you for leaving this suggestion, if other customers are having trouble with configuring logging, please +1 this issue to help us prioritize this work going forward.
It is certainly possible. KCL uses apache commons logging library to log messages. Depending on the Log implementation you are using, one option is to provide appropriate logging configuration file when launching the KCL application to have your desired logging level.
For example, with Jdk14Logger (which might be default Log implementation if no other Log implementation is configured/found), I provided following commons-logging.properties file in my classpath to print only warning and error messages by default: .level=WARNING
You can also provide the location of the properties file when launching the application: java -Djava.util.logging.config.file=<location-of-properties-file> <MyKCLAppMainClass>
Is it possible to add documentation on how to set the log level of the Consumer? We'd like to log
WARN
and higher, we find thatINFO
is too verbose for us.The text was updated successfully, but these errors were encountered: