Package net.sf.jaxodraw.plugin
Interface JaxoPluginLogger
public interface JaxoPluginLogger
A wrapper of JaxoLog for plugins.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Logs a DEBUG exception.void
Logs a DEBUG message.void
Logs a DEBUG message.void
Logs a INFO exception.void
Logs a INFO message.void
Logs a INFO message.boolean
Check if a debug message would actually be logged by the current logger.boolean
Check if a info message would actually be logged by the current logger.boolean
Check if a warn message would actually be logged by the current logger.void
Logs a WARN exception.void
Logs a WARN message.void
Logs a WARN message.
-
Method Details
-
isDebugEnabled
boolean isDebugEnabled()Check if a debug message would actually be logged by the current logger.- Returns:
- true if debug logging is enabled.
-
isInfoEnabled
boolean isInfoEnabled()Check if a info message would actually be logged by the current logger.- Returns:
- true if info logging is enabled.
-
isWarnEnabled
boolean isWarnEnabled()Check if a warn message would actually be logged by the current logger.- Returns:
- true if warn logging is enabled.
-
debug
Logs a DEBUG message.- Parameters:
msg
- The log message.
-
debug
Logs a DEBUG exception.- Parameters:
e
- An exception to log.
-
debug
Logs a DEBUG message.- Parameters:
msg
- The log message.e
- An exception to log.
-
info
Logs a INFO message.- Parameters:
msg
- The log message.
-
info
Logs a INFO exception.- Parameters:
e
- An exception to log.
-
info
Logs a INFO message.- Parameters:
msg
- The log message.e
- An exception to log.
-
warn
Logs a WARN message.- Parameters:
msg
- The log message.
-
warn
Logs a WARN exception.- Parameters:
e
- An exception to log.
-
warn
Logs a WARN message.- Parameters:
msg
- The log message.e
- An exception to log.
-