mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-18 00:46:55 +01:00
Add logging options to PlaceholderExpansion
This commit is contained in:
parent
b4f6831e54
commit
d79f9725bd
@ -22,6 +22,7 @@ package me.clip.placeholderapi.expansion;
|
|||||||
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.logging.Level;
|
||||||
import me.clip.placeholderapi.PlaceholderAPIPlugin;
|
import me.clip.placeholderapi.PlaceholderAPIPlugin;
|
||||||
import me.clip.placeholderapi.PlaceholderHook;
|
import me.clip.placeholderapi.PlaceholderHook;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
@ -275,7 +276,6 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
|
|||||||
* @param def The default boolean to return when the ConfigurationSection is null
|
* @param def The default boolean to return when the ConfigurationSection is null
|
||||||
* @return boolean from the provided path or the default one provided
|
* @return boolean from the provided path or the default one provided
|
||||||
*/
|
*/
|
||||||
@NotNull
|
|
||||||
public final boolean getBoolean(@NotNull final String path, final boolean def) {
|
public final boolean getBoolean(@NotNull final String path, final boolean def) {
|
||||||
final ConfigurationSection section = getConfigSection();
|
final ConfigurationSection section = getConfigSection();
|
||||||
return section == null ? def : section.getBoolean(path, def);
|
return section == null ? def : section.getBoolean(path, def);
|
||||||
@ -294,6 +294,48 @@ public abstract class PlaceholderExpansion extends PlaceholderHook {
|
|||||||
return section != null && section.contains(path);
|
return section != null && section.contains(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs the provided message with the provided Level in the console.
|
||||||
|
* <br>The message will be prefixed with {@link #getName() <code>[<expansion name>]</code>}
|
||||||
|
*
|
||||||
|
* @param level The Level at which the message should be logged with
|
||||||
|
* @param msg The message to log
|
||||||
|
*/
|
||||||
|
public void log(Level level, String msg) {
|
||||||
|
getPlaceholderAPI().getLogger().log(level, "[" + getName() + "] " + msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs the provided message with Level "info".
|
||||||
|
* <br>The message will be prefixed with {@link #getName() <code>[<expansion name>]</code>}
|
||||||
|
*
|
||||||
|
* @param msg The message to log
|
||||||
|
*/
|
||||||
|
public void info(String msg) {
|
||||||
|
log(Level.INFO, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs the provided message with Level "warning".
|
||||||
|
* <br>The message will be prefixed with {@link #getName() <code>[<expansion name>]</code>}
|
||||||
|
*
|
||||||
|
* @param msg The message to log
|
||||||
|
*/
|
||||||
|
public void warning(String msg) {
|
||||||
|
log(Level.WARNING, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Logs the provided message with Level "severe" (error).
|
||||||
|
* <br>The message will be prefixed with {@link #getName() <code>[<expansion name>]</code>}
|
||||||
|
*
|
||||||
|
* @param msg The message to log
|
||||||
|
*/
|
||||||
|
public void severe(String msg) {
|
||||||
|
log(Level.SEVERE, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the provided Object is an instance of this PlaceholderExpansion.
|
* Whether the provided Object is an instance of this PlaceholderExpansion.
|
||||||
* <br>This method will perform the following checks in order:
|
* <br>This method will perform the following checks in order:
|
||||||
|
Loading…
Reference in New Issue
Block a user