1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-02 10:52:37 +02:00

Show the full redis exception in logger output

This commit is contained in:
Luck
2021-01-14 20:43:39 +00:00
parent 238a4fba75
commit be1b9d45fa

View File

@@ -101,16 +101,16 @@ public class RedisMessenger implements Messenger {
jedis.subscribe(this, CHANNEL); jedis.subscribe(this, CHANNEL);
} catch (Exception e) { } catch (Exception e) {
wasBroken = true; wasBroken = true;
this.parent.plugin.getLogger().warn("Redis pubsub connection dropped, trying to re-open the connection: " + e.getMessage()); this.parent.plugin.getLogger().warn("Redis pubsub connection dropped, trying to re-open the connection", e);
try { try {
unsubscribe(); unsubscribe();
} catch (Exception ignored) { } catch (Exception ignored) {
} }
// Sleep for 2 seconds to prevent massive spam in console // Sleep for 5 seconds to prevent massive spam in console
try { try {
Thread.sleep(2000); Thread.sleep(5000);
} catch (InterruptedException ie) { } catch (InterruptedException ie) {
Thread.currentThread().interrupt(); Thread.currentThread().interrupt();
} }