| Modifier and Type | Method and Description |
|---|---|
static void |
debug(String message,
Object... args)
Log a message at debug level.
|
static void |
error(String message,
Object... args)
Log a message at error 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(String message,
Object... args)
Log a message at verbose level.
|
static void |
warn(String message,
Object... args)
Log a message at warning 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(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(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(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(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(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 © 2015 Cooking Fox. All rights reserved.