Skip to content

Commit

Permalink
Fix idebug
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Jan 3, 2023
1 parent 6c0623c commit c994ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/citizensnpcs/api/util/Messaging.java
Expand Up @@ -133,7 +133,7 @@ public static void debug(Object... msg) {

public static void idebug(Supplier<String> msg) {
if (isDebugging()) {
DEBUG_LOGGER.log(Level.INFO, "[Citizens] " + msg);
DEBUG_LOGGER.log(Level.INFO, "[Citizens] " + msg.get());
}
}

Expand Down

0 comments on commit c994ca1

Please sign in to comment.