| Modifier and Type | Method and Description |
|---|---|
static void |
debug()
Log a message at debug level.
|
static void |
debug(Object value)
Log a message at debug level.
|
static void |
debug(String message,
Object... args)
Log a message at debug level.
|
static void |
error()
Log a message at error level.
|
static void |
error(Object value)
Log a message at error level.
|
static void |
error(String message,
Object... args)
Log a message at error level.
|
static void |
info()
Log a message at info level.
|
static void |
info(Object value)
Log a message at info level.
|
static void |
info(String message,
Object... args)
Log a message at info level.
|
static Settings |
init()
Initializes the Logger and returns its
Settings object. |
static void |
verbose()
Log a message at verbose level.
|
static void |
verbose(Object value)
Log a message at verbose level.
|
static void |
verbose(String message,
Object... args)
Log a message at verbose level.
|
static void |
warn()
Log a message at warn level.
|
static void |
warn(Object value)
Log a message at warn level.
|
static void |
warn(String message,
Object... args)
Log a message at warn level.
|
public static Settings init()
Settings object. Use the Settings object to
add adapters and configure the behavior of the logger.public static void debug()
Level.DEBUGpublic static void debug(Object value)
value - The message to log.Level.DEBUGpublic static void debug(String message, Object... args)
message - The message to log.args - Values that need to be included in the log message
(through String.format(String, Object...)).Level.DEBUGpublic static void error()
Level.ERRORpublic static void error(Object value)
value - The message to log.Level.ERRORpublic static void error(String message, Object... args)
message - The message to log.args - Values that need to be included in the log message
(through String.format(String, Object...)).Level.ERRORpublic static void info()
Level.INFOpublic static void info(Object value)
value - The message to log.Level.INFOpublic static void info(String message, Object... args)
message - The message to log.args - Values that need to be included in the log message
(through String.format(String, Object...)).Level.INFOpublic static void verbose()
Level.VERBOSEpublic static void verbose(Object value)
value - The message to log.Level.VERBOSEpublic static void verbose(String message, Object... args)
message - The message to log.args - Values that need to be included in the log message
(through String.format(String, Object...)).Level.VERBOSEpublic static void warn()
Level.WARNpublic static void warn(Object value)
value - The message to log.Level.WARNpublic static void warn(String message, Object... args)
message - The message to log.args - Values that need to be included in the log message
(through String.format(String, Object...)).Level.WARNCopyright © 2016 Cooking Fox. All rights reserved.