Constructor and Description |
---|
AbstractLogger() |
Modifier and Type | Method and Description |
---|---|
void |
fine(String message)
Logs a message at
Level.FINE . |
void |
fine(String message,
Throwable thrown)
Logs message with associated throwable information at
Level.FINE . |
void |
fine(Throwable thrown)
Logs a throwable 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. |
boolean |
isInfoEnabled()
Checks if the
Level.INFO is enabled. |
boolean |
isWarningEnabled()
Checks if the
Level.WARNING 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 boolean isFinestEnabled()
ILogger
Level.FINEST
is enabled.isFinestEnabled
in interface ILogger
public void fine(String message)
ILogger
Level.FINE
.public void fine(String message, Throwable thrown)
ILogger
Level.FINE
.public void fine(Throwable thrown)
ILogger
Level.FINE
. The message of the Throwable will be the message.public boolean isFineEnabled()
ILogger
Level.FINE
is enabled.isFineEnabled
in interface ILogger
public void info(String message)
ILogger
Level.INFO
.public boolean isInfoEnabled()
ILogger
Level.INFO
is enabled.isInfoEnabled
in interface ILogger
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
.public boolean isWarningEnabled()
ILogger
Level.WARNING
is enabled.isWarningEnabled
in interface ILogger
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
.Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.