Add missing [<expansion>] prefix

This commit is contained in:
Andre601 2021-07-31 00:11:24 +02:00
parent 721904335d
commit fe0bb12d53
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
* @param throwable The Throwable to log
*/
public void log(Level level, String msg, Throwable throwable) {
getPlaceholderAPI().getLogger().log(level, msg, throwable);
getPlaceholderAPI().getLogger().log(level, "[" + getName() + "] " + msg, throwable);
}
/**