9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2026-01-01 21:26:39 +00:00

refactor: Even more minor debug logging tweaks

This commit is contained in:
William
2023-12-21 15:02:36 +00:00
parent 272bc1278a
commit 4db162e78f

View File

@@ -223,7 +223,7 @@ public class RedisManager extends JedisPubSub {
final byte[] readData = jedis.get(key);
if (readData != null) {
final String checkoutServer = new String(readData, StandardCharsets.UTF_8);
plugin.debug(String.format("[%s] Waiting for %s key to be unset from %s on Redis",
plugin.debug(String.format("[%s] Waiting for %s %s key to be unset on Redis",
user.getUsername(), checkoutServer, RedisKeyType.DATA_CHECKOUT));
return Optional.of(checkoutServer);
}