Skip to content

Commit

Permalink
Add Citizens to debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Oct 12, 2020
1 parent d516f6e commit 1d793ca
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 @@ -74,7 +74,7 @@ public static void configure(File debugFile, boolean debug, String messageColour

public static void debug(Object... msg) {
if (isDebugging()) {
DEBUG_LOGGER.log(Level.INFO, SPACE.join(msg));
DEBUG_LOGGER.log(Level.INFO, "[Citizens] " + SPACE.join(msg));
}
}

Expand Down

0 comments on commit 1d793ca

Please sign in to comment.