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..bc39c41b34 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,13 @@ 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"; }