diff --git a/core/src/main/java/tc/oc/pgm/api/channels/Channel.java b/core/src/main/java/tc/oc/pgm/api/channels/Channel.java index 556ba57343..79e2ac2b61 100644 --- a/core/src/main/java/tc/oc/pgm/api/channels/Channel.java +++ b/core/src/main/java/tc/oc/pgm/api/channels/Channel.java @@ -64,6 +64,11 @@ default SettingValue getSetting() { return null; } + /** + * Retrieves the format these channel messages should be logged using via the {@code AsyncPlayerChatEvent}. + * @param target the message target + * @return formatted messaged printed to console + */ default String getLoggerFormat(T target) { return "<%s>: %s"; }