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
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -101,16 +101,16 @@ public class RedisMessenger implements Messenger {
jedis.subscribe(this, CHANNEL);
} catch (Exception e) {
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 {
unsubscribe();
} catch (Exception ignored) {
}
// Sleep for 2 seconds to prevent massive spam in console
// Sleep for 5 seconds to prevent massive spam in console
try {
Thread.sleep(2000);
Thread.sleep(5000);
} catch (InterruptedException ie) {
Thread.currentThread().interrupt();
}