public final class InternalLogger extends Object
| Modifier and Type | Method and Description |
|---|---|
static void |
error(String message)
Log an internal error.
|
static void |
error(String message,
Object... arguments)
Log an internal error. "{}" placeholders will be replaced by the given arguments.
|
static void |
error(Throwable exception)
Log an internal error.
|
static void |
error(Throwable exception,
String message)
Log an internal error.
|
static void |
error(Throwable exception,
String message,
Object... arguments)
Log an internal error. "{}" placeholders will be replaced by the given arguments.
|
static void |
warn(String message)
Log an internal warning.
|
static void |
warn(String message,
Object... arguments)
Log an internal warning. "{}" placeholders will be replaced by the given arguments.
|
static void |
warn(Throwable exception)
Log an internal warning.
|
static void |
warn(Throwable exception,
String message)
Log an internal warning.
|
static void |
warn(Throwable exception,
String message,
Object... arguments)
Log an internal warning. "{}" placeholders will be replaced by the given arguments.
|
public static void warn(String message)
message - Text to logpublic static void warn(String message, Object... arguments)
message - Formated text to logarguments - Arguments for the text messagepublic static void warn(Throwable exception)
exception - Exception to logpublic static void warn(Throwable exception, String message)
exception - Exception to logmessage - Text to logpublic static void warn(Throwable exception, String message, Object... arguments)
exception - Exception to logmessage - Formated text to logarguments - Arguments for the text messagepublic static void error(String message)
message - Text to logpublic static void error(String message, Object... arguments)
message - Formated text to logarguments - Arguments for the text messagepublic static void error(Throwable exception)
exception - Exception to logpublic static void error(Throwable exception, String message)
exception - Exception to logmessage - Text to logCopyright © 2017. All rights reserved.