Skip to content

Commit

Permalink
update redis logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathu-lmn committed Jun 14, 2024
1 parent 615259f commit ad10403
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class RedisHandler implements IRedisMessageHandler {

@Override
public void run(String... args) {
Core.get().getLogger().log(Level.INFO, "Recieved Redis message with args : " + String.join(" ", args));
Core.get().getLogger().log(Level.INFO, "Recieved Redis message with args : " + String.join(" ", args) + " current server status is " + Core.get().getGameManager().getStatus());
switch (args[0]) {
case "changeRequestedGame":
Core.get().getGameManager().changeDefaultGame(args[1]);
Expand Down

0 comments on commit ad10403

Please sign in to comment.