We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See #1367
The point of this is that it will be possible to configure the log level for both kinesis-s3 and the KCL by starting the application like this:
java -jar -Dorg.slf4j.simpleLogger.defaultLogLevel=debug kinesis-lzo-sink-0.x.0 --config myhocon
The text was updated successfully, but these errors were encountered:
Can we move the log level config into the hocon?
Sorry, something went wrong.
Looks like you can configure it by changing the system property from inside the app:
val logLevel = config.getString("logLevel") System.setProperty(org.slf4j.impl.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, logLevel)
(from http://stackoverflow.com/questions/14544991/how-to-configure-slf4j-simple)
89dabc4
jbeemster
No branches or pull requests
See #1367
The point of this is that it will be possible to configure the log level for both kinesis-s3 and the KCL by starting the application like this:
The text was updated successfully, but these errors were encountered: