static Logger |
Logger.getLogger(java.lang.Class<?> clazz,
Logger.LogLevel logLevel) |
Returns a Logger for the given Class and LogLevel.
|
static Logger |
Logger.getLogger(java.lang.Class<?> clazz,
Logger.LogLevel logLevel,
java.io.PrintStream printStream) |
Returns a Logger for the given Class and LogLevel and PrintStream.
|
static Logger |
Logger.getLogger(java.lang.Class<?> clazz,
Logger.LogLevel logLevel,
java.time.format.DateTimeFormatter dateFormat,
java.io.PrintStream printStream) |
Returns a Logger for the given Class, LogLevel, DateTimeFormatter, and PrintStream.
|
static void |
LoggerFactory.initialise(Logger.LogLevel logLevel) |
|
static void |
LoggerFactory.initialise(Logger.LogLevel logLevel,
java.io.PrintStream printStream) |
Initialise the LoggerFactory with the given Logger.LogLevel and PrintStream.
|
static void |
LoggerFactory.initialise(Logger.LogLevel logLevel,
java.io.PrintStream printStream,
java.time.format.DateTimeFormatter dateTimeFormatter) |
Initialise the LoggerFactory with the given Logger.LogLevel, PrintStream, and DateTimeFormatter
All loggers created by getLogger will be set at this LogLevel and use this PrintStream and DateTimeFormatter.
|
private void |
Logger.log(Logger.LogLevel logLevel,
java.lang.String message,
java.lang.Object... args) |
|