|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.schmant.report.SchmantReportLogAdapter
public class SchmantReportLogAdapter
This acts as a bridge between the EntityFS logging and the Schmant logging
(reporting). An instance of this class can be set as an EntityFS file
system's LogAdapter
. All logging will be done to the current thread's
Report
.
Since objects of this class do not contain any mutable internal state, the
singleton instance INSTANCE
may be used instead of creating new
instances.
Field Summary | |
---|---|
static SchmantReportLogAdapter |
INSTANCE
|
Constructor Summary | |
---|---|
SchmantReportLogAdapter()
|
Method Summary | |
---|---|
boolean |
isDebugEnabled()
Will messages with the level DEBUG be logged? |
boolean |
isErrorEnabled()
Will messages with the level ERROR be logged? |
boolean |
isFinerEnabled()
Will messages with the level FINER be logged? |
boolean |
isInfoEnabled()
Will messages with the level INFO be logged? |
boolean |
isSevereEnabled()
Will messages with the level SEVERE be logged? |
boolean |
isTraceEnabled()
Will messages with the level TRACE be logged? |
boolean |
isWarningEnabled()
Will messages with the level WARNING be logged? |
void |
logDebug(Object o)
Log the result of o.toString() with the level DEBUG . |
void |
logDebug(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level DEBUG . |
void |
logDebug(Throwable t)
Log the exception's message and stack trace with the level DEBUG . |
void |
logError(Object o)
Log the result of o.toString() with the level ERROR . |
void |
logError(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level ERROR . |
void |
logError(Throwable t)
Log the exception's message and stack trace with the level ERROR . |
void |
logFiner(Object o)
Log the result of o.toString() with the level FINER . |
void |
logFiner(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level FINER . |
void |
logFiner(Throwable t)
Log the exception's message and stack trace with the level FINER . |
void |
logInfo(Object o)
Log the result of o.toString() with the level INFO . |
void |
logInfo(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level INFO . |
void |
logInfo(Throwable t)
Log the exception's message and stack trace with the level INFO . |
void |
logSevere(Object o)
Log the result of o.toString() with the level SEVERE . |
void |
logSevere(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level SEVERE . |
void |
logSevere(Throwable t)
Log the exception's message and stack trace with the level SEVERE
. |
void |
logTrace(Object o)
Log the result of o.toString() with the level TRACE . |
void |
logTrace(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level TRACE . |
void |
logTrace(Throwable t)
Log the exception's message and stack trace with the level TRACE . |
void |
logWarning(Object o)
Log the result of o.toString() with the level WARNING . |
void |
logWarning(Object o,
Throwable t)
Log the result of o.toString() and the exception's stack trace to
the level WARNING . |
void |
logWarning(Throwable t)
Log the exception's message and stack trace with the level WARNING . |
void |
setLevel(Level l)
Set the log level. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final SchmantReportLogAdapter INSTANCE
Constructor Detail |
---|
public SchmantReportLogAdapter()
Method Detail |
---|
public void logTrace(Object o)
LogAdapter
o.toString()
with the level TRACE
.
logTrace
in interface LogAdapter
o
- The object to log.public void logTrace(Throwable t)
LogAdapter
TRACE
.
logTrace
in interface LogAdapter
t
- The exception to log.public void logTrace(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level TRACE
.
logTrace
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logFiner(Object o)
LogAdapter
o.toString()
with the level FINER
.
logFiner
in interface LogAdapter
o
- The object to log.public void logFiner(Throwable t)
LogAdapter
FINER
.
logFiner
in interface LogAdapter
t
- The exception to log.public void logFiner(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level FINER
.
logFiner
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logDebug(Object o)
LogAdapter
o.toString()
with the level DEBUG
.
logDebug
in interface LogAdapter
o
- The object to log.public void logDebug(Throwable t)
LogAdapter
DEBUG
.
logDebug
in interface LogAdapter
t
- The exception to log.public void logDebug(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level DEBUG
.
logDebug
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logInfo(Object o)
LogAdapter
o.toString()
with the level INFO
.
logInfo
in interface LogAdapter
o
- The object to log.public void logInfo(Throwable t)
LogAdapter
INFO
.
logInfo
in interface LogAdapter
t
- The exception to log.public void logInfo(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level INFO
.
logInfo
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logWarning(Object o)
LogAdapter
o.toString()
with the level WARNING
.
logWarning
in interface LogAdapter
o
- The object to log.public void logWarning(Throwable t)
LogAdapter
WARNING
.
logWarning
in interface LogAdapter
t
- The exception to log.public void logWarning(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level WARNING
.
logWarning
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logError(Object o)
LogAdapter
o.toString()
with the level ERROR
.
logError
in interface LogAdapter
o
- The object to log.public void logError(Throwable t)
LogAdapter
ERROR
.
logError
in interface LogAdapter
t
- The exception to log.public void logError(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level ERROR
.
logError
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void logSevere(Object o)
LogAdapter
o.toString()
with the level SEVERE
.
logSevere
in interface LogAdapter
o
- The object to log.public void logSevere(Throwable t)
LogAdapter
SEVERE
.
logSevere
in interface LogAdapter
t
- The exception to log.public void logSevere(Object o, Throwable t)
LogAdapter
o.toString()
and the exception's stack trace to
the level SEVERE
.
logSevere
in interface LogAdapter
o
- The object to log.t
- The exception to log.public void setLevel(Level l)
LogAdapter
java.util.logging.Level
class to
define the level. The Level
value is translated to the
corresponding logging level in the logging system used by the adapter
implementation. See the documentation for that adapter for how the
mapping is done.
setLevel
in interface LogAdapter
l
- The level.public boolean isTraceEnabled()
LogAdapter
TRACE
be logged?
isTraceEnabled
in interface LogAdapter
true
if messages with the level TRACE
will be
logged, false
otherwise.public boolean isFinerEnabled()
LogAdapter
FINER
be logged?
isFinerEnabled
in interface LogAdapter
true
if messages with the level FINER
will be
logged, false
otherwise.public boolean isDebugEnabled()
LogAdapter
DEBUG
be logged?
isDebugEnabled
in interface LogAdapter
true
if messages with the level DEBUG
will be
logged, false
otherwise.public boolean isInfoEnabled()
LogAdapter
INFO
be logged?
isInfoEnabled
in interface LogAdapter
true
if messages with the level INFO
will be
logged, false
otherwise.public boolean isWarningEnabled()
LogAdapter
WARNING
be logged?
isWarningEnabled
in interface LogAdapter
true
if messages with the level WARNING
will be
logged, false
otherwise.public boolean isErrorEnabled()
LogAdapter
ERROR
be logged?
isErrorEnabled
in interface LogAdapter
true
if messages with the level ERROR
will be
logged, false
otherwise.public boolean isSevereEnabled()
LogAdapter
SEVERE
be logged?
isSevereEnabled
in interface LogAdapter
true
if messages with the level SEVERE
will be
logged, false
otherwise.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |