Constructor and Description |
---|
AbstractLogger() |
Modifier and Type | Method and Description |
---|---|
void |
fine(String message)
Logs a message at
Level.FINE . |
void |
finest(String message)
Logs a message at
Level.FINEST . |
void |
finest(String message,
Throwable thrown)
Logs message with associated throwable information at
Level.FINEST . |
void |
finest(Throwable thrown)
Logs a throwable at
Level.FINEST . |
void |
info(String message)
Logs a message at
Level.INFO . |
boolean |
isFineEnabled()
Checks if the
Level.FINE is enabled. |
boolean |
isFinestEnabled()
Checks if the
Level.FINEST is enabled. |
void |
severe(String message)
Logs a message at
Level.SEVERE . |
void |
severe(String message,
Throwable thrown)
Logs message with associated throwable information at
Level.SEVERE . |
void |
severe(Throwable thrown)
Logs a throwable at
Level.SEVERE . |
void |
warning(String message)
Logs a message at
Level.WARNING . |
void |
warning(String message,
Throwable thrown)
Logs message with associated throwable information at
Level.WARNING . |
void |
warning(Throwable thrown)
Logs a throwable at
Level.WARNING . |
public void finest(String message)
ILogger
Level.FINEST
.public void finest(String message, Throwable thrown)
ILogger
Level.FINEST
.public void finest(Throwable thrown)
ILogger
Level.FINEST
. The message of the Throwable will be the message.public void fine(String message)
ILogger
Level.FINE
.public boolean isFinestEnabled()
ILogger
Level.FINEST
is enabled.isFinestEnabled
in interface ILogger
public boolean isFineEnabled()
ILogger
Level.FINE
is enabled.isFineEnabled
in interface ILogger
public void info(String message)
ILogger
Level.INFO
.public void severe(String message)
ILogger
Level.SEVERE
.public void severe(Throwable thrown)
ILogger
Level.SEVERE
. The message of the Throwable will be the message.public void severe(String message, Throwable thrown)
ILogger
Level.SEVERE
.public void warning(String message)
ILogger
Level.WARNING
.public void warning(Throwable thrown)
ILogger
Level.WARNING
. The message of the Throwable will be the message.public void warning(String message, Throwable thrown)
ILogger
Level.WARNING
.Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.