LuckPerms

LuckPerms

41.4k Downloads

LuckPerms Bungee Error SLF4J Fail

Hazugg opened this issue ยท 9 comments

commented

On my Bungee server I get the error when loading the plugin.

Could not load class "org.slf4j.impl.StaticLoggerBinder"

As the image shows, it is not loading correctly the corresponding class of slf4j

image

commented

you mean remove all plugins and just run luckperms to see if the error continues?

commented

Apparently you are right, a plugin is interfering with the connection of the class, previously I have not had problems and I did not get this error, maybe it is with some update of the plugin that is causing the class not to be executed, some way to fix it ? Or would you just have to report it to the plugin that is doing the interference so you can validate and fix it?

commented

Another question, what does that class not work? Would it cause a fatal error in the plugin? or in the connections?

commented

SLF4J is just the library used by Hikari (the library in charge of handling connections to the database) to log things in console. Everything will still work, the logger will just fallback to a NOP (no-operation) one, meaning it won't print anything, you just won't see things like errors or warnings printed by Hikari; is it ideal? Well no lol but the connection to the db and transactions will work (assuming it can connect properly in the first place), the issue is one of those plugins is (most likely) being shipped with an ancient version of SLF4J.

commented

Thank you very much for the report, maybe that is what is causing another error that I keep with luckperms, now that you tell me about hikari, although I will see if the problem is that, I will report right now about this inconvenience to the other plugin for see if you can do something about it, thank you very much again.

commented

What BungeeCord version? What plugins do you have on your proxy? Is there anything else to that error?

commented

I have this version of bungee

image

These are the plugins that I have in the bungee and I don't think that any are interfering

image

And not, only does this error appear when loading luckperms, apparently the plugin is not loading the corresponding class as mentioned above, but I would not know what the reason is, that is not running, any way to resolve that error?

image

commented

Are you able to reproduce the issue with LuckPerms as the only plugin?

commented

Another question, what does that class not work? Would it cause a fatal error in the plugin? or in the connections?

It's not a fatal error :)