|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.hazelcast.logging.AbstractLogger
public abstract class AbstractLogger
Abstract ILogger implementation that provides implementations for the convenience methods like
finest,info,warning and severe.
| Constructor Summary | |
|---|---|
AbstractLogger()
|
|
| Method Summary | |
|---|---|
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 |
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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.hazelcast.logging.ILogger |
|---|
getLevel, isLoggable, log, log, log |
| Constructor Detail |
|---|
public AbstractLogger()
| Method Detail |
|---|
public void finest(String message)
ILoggerLevel.FINEST.
finest in interface ILoggermessage - the message to log.
public void finest(String message,
Throwable thrown)
ILoggerLevel.FINEST.
finest in interface ILoggermessage - the message to logthrown - the Throwable associated to the message.public void finest(Throwable thrown)
ILoggerLevel.FINEST. The message of the Throwable will be the message.
finest in interface ILoggerthrown - the Throwable to log.public boolean isFinestEnabled()
ILoggerLevel.FINEST is enabled.
isFinestEnabled in interface ILoggerpublic void info(String message)
ILoggerLevel.INFO.
info in interface ILoggermessage - the message to log.public void severe(String message)
ILoggerLevel.SEVERE.
severe in interface ILoggermessage - the message to log.public void severe(Throwable thrown)
ILoggerLevel.SEVERE. The message of the Throwable will be the message.
severe in interface ILoggerthrown - the Throwable to log.
public void severe(String message,
Throwable thrown)
ILoggerLevel.SEVERE.
severe in interface ILoggermessage - the message to logthrown - the Throwable associated to the message.public void warning(String message)
ILoggerLevel.WARNING.
warning in interface ILoggermessage - the message to log.public void warning(Throwable thrown)
ILoggerLevel.WARNING. The message of the Throwable will be the message.
warning in interface ILoggerthrown - the Throwable to log.
public void warning(String message,
Throwable thrown)
ILoggerLevel.WARNING.
warning in interface ILoggermessage - the message to logthrown - the Throwable associated to the message.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||