| Modifier and type | Action and description |
|---|---|
| abstract void | debug(Supplier<T>)
Print the given message at debug logging level. |
| abstract void | debug(Object,Object*)
Print the given message at debug logging level. |
| abstract void | error(Supplier<T>)
Print the given message at error logging level. |
| abstract void | error(Object,[Throwable],Object*)
Print the given message at error logging level. |
| abstract java.util.logging.Logger | getLogger
Replies the backend logger. |
| abstract int | getLogLevel
Replies the logging level. |
| abstract void | info(Supplier<T>)
Print the given message at information logging level. |
| abstract void | info(Object,Object*)
Print the given message at information logging level. |
| abstract boolean | isDebugLogEnabled
Replies if the logging system is displaying the debugging messages. |
| abstract boolean | isErrorLogEnabled
Replies if the logging system is displaying the errors. |
| abstract boolean | isInfoLogEnabled
Replies if the logging system is displaying the information messages. |
| abstract boolean | isWarningLogEnabled
Replies if the logging system is displaying the warnings. |
| abstract void | println(Object)
Print the given message at information logging level.
Deprecated for removal since 0.10: Use info(Object,Object...).
|
| abstract void | setLoggingName(String)
Change the name used for logging. |
| abstract void | setLogLevel(int)
Set the logging level. |
| abstract void | warning(Supplier<T>)
Print the given message at warning logging level. |
| abstract void | warning(Object,[Throwable],Object*)
Print the given message at warning logging level. |
val logger : java.util.logging.Logger
This property is an alias for the action: getLogger
var logLevel : int
This property is an alias for the action: getLogLevel
def debug(Supplier<T>)
def debug(Object,Object*)
def error(Supplier<T>)
def error(Object,[Throwable],Object*)
def getLogger : java.util.logging.Logger
def getLogLevel : int
def info(Supplier<T>)
def info(Object,Object*)
def isDebugLogEnabled : boolean
def isErrorLogEnabled : boolean
def isInfoLogEnabled : boolean
def isWarningLogEnabled : boolean
def println(Object)
println.
def setLoggingName(String)
def setLogLevel(int)
def warning(Supplier<T>)
def warning(Object,[Throwable],Object*)