Interface LoggablePlugin
-
- All Known Subinterfaces:
MVPlugin
- All Known Implementing Classes:
MultiverseCore,MultiversePlugin
@Deprecated public interface LoggablePluginDeprecated.Replaced byLogging.A simple API to require plugins to have a log method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.bukkit.ServergetServer()Deprecated.Gets the server instance that this plugin is attached to.voidlog(java.util.logging.Level level, java.lang.String msg)Deprecated.Logs a message at the specified level.
-
-
-
Method Detail
-
log
void log(java.util.logging.Level level, java.lang.String msg)Deprecated.Logs a message at the specified level.- Parameters:
level- The Log-Level.msg- The message to log.
-
getServer
org.bukkit.Server getServer()
Deprecated.Gets the server instance that this plugin is attached to.- Returns:
- A
Serverinstance.
-
-