-
Notifications
You must be signed in to change notification settings - Fork 23
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
SLF4J error #11
Comments
I'm getting this exact same error too. |
Read about the SLF4J logging facade. This library is using the SLF4J API for logging, but in your project you have to include an actual logging implementation (e.g Log4j2, Logback etc..) to make it work. I recommend you to use Logback as your underlying logging framework. dependencies {
...
implementation 'ch.qos.logback:logback-core:1.2.3'
implementation 'ch.qos.logback:logback-classic:1.2.3'
} Here are some articles & video tutorials in this topic: Logback vs SLF4J vs Log4J2 - what is the difference? |
One question: If I don't want any logger at all, as I don't need logs, would it be better to let this error continue and let the logger be non-operational? For me, the fewer logs and residual data, the better. |
Well, if you don't want any logs at all, you can ignore the error. I think you should configure Logback and set the default logger level to |
I appear to be getting a non-fatal error with this library. Starting up my app with
OSThemeDetector.registerListener()
in themain()
method gives me this:The text was updated successfully, but these errors were encountered: