-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
NoSuchMethodError on org.slf4j.Logger.atDebug() #8
Comments
The issue you're facing is happening because the dependency spring-boot-starter-logging comes with its own version of slf4j-api (currently 1.7.32), whereas this library uses an experimental version (2.0.0-alpha1). Using an experimental version of a dependency on a published library is never a good idea, so I'll migrate to the latest stable version. I'll release version 1.1.0 in a few hours to fix this issue. |
Version 1.1.0 has been released. 🎉 Can you upgrade to this version and confirm that your issue is fixed? |
Thank you very much @SandroHc , great job 👍 |
Thank you for confirming the fix, I'll close this issue now. As for your other request, the endpoint getUsersSearch is only available on V4 of the Jikan API, but unfortunately this library only supports V3. I have created #9 to track the migration to V4. |
Just read your edit. Although your gesture is greatly appreciated, it would be more beneficial to support the maintainers of the Jikan API directly - https://patreon.com/jikan. They're the ones doing the bulk of the work and the ones with the server/infrastructure costs! 😁 |
I'm playing with this great 🥇 library inside Spring Boot (Java 17) web app,
but for unknown reason I get this exception :
java.lang.NoSuchMethodError: 'org.slf4j.spi.LoggingEventBuilder org.slf4j.Logger.atDebug()'
I'm using maven latest version :
1.0.2
My intuition is that maven is picking the wrong version of self4j but I'm not familiar with maven exclusions strategies on Pom lavel
Any hint on how to solve this ?
The text was updated successfully, but these errors were encountered: