mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-12-24 01:58:39 +01:00
Adds addon name to log messages.
This commit is contained in:
parent
281d16c175
commit
0d723587e4
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user