Adds addon name to log messages.

This commit is contained in:
tastybento 2019-02-06 17:39:44 -08:00
parent 281d16c175
commit 0d723587e4
1 changed files with 3 additions and 3 deletions

View File

@ -356,15 +356,15 @@ public abstract class Addon {
}
public void log(String string) {
getPlugin().log(string);
getPlugin().log(getDescription() != null ? "[" + getDescription().getName() + "] " + string : string);
}
public void logWarning(String string) {
getPlugin().logWarning(string);
getPlugin().logWarning(getDescription() != null ? "[" + getDescription().getName() + "] " + string : string);
}
public void logError(String string) {
getPlugin().logError(string);
getPlugin().logError(getDescription() != null ? "[" + getDescription().getName() + "] " + string : string);
}
/**