- java.lang.Object
-
- org.datanucleus.util.NucleusLogger
-
- org.datanucleus.util.Log4JLogger
-
public class Log4JLogger extends NucleusLogger
Log4J implementation of a NucleusLogger. See http://logging.apache.org/log4j for details of Log4J. Assumes that all configuration of the loggers are done by external configuration (System property "log4j.configuration"). Maps logging levels as follows :- debug maps to Log4J DEBUG
- info maps to Log4J INFO
- warn maps to Log4J WARN
- error maps to Log4J ERROR
- fatal maps to Log4J FATAL
-
-
Field Summary
-
Fields inherited from class org.datanucleus.util.NucleusLogger
CACHE, CONNECTION, DATASTORE, DATASTORE_NATIVE, DATASTORE_PERSIST, DATASTORE_RETRIEVE, DATASTORE_SCHEMA, GENERAL, LIFECYCLE, METADATA, PERSISTENCE, QUERY, TRANSACTION, VALUEGENERATION
-
-
Constructor Summary
Constructors Constructor Description Log4JLogger(String logName)Constructor using Log4J.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddebug(Object msg)Log a debug message.voiddebug(Object msg, Throwable thr)Log a debug message with throwable.voiderror(Object msg)Log an error message.voiderror(Object msg, Throwable thr)Log an error message with throwable.voidfatal(Object msg)Log an fatal message.voidfatal(Object msg, Throwable thr)Log a fatal message with throwable.ObjectgetNativeLogger()Accessor for the native logger object.voidinfo(Object msg)Log an info message.voidinfo(Object msg, Throwable thr)Log an info message with throwable.booleanisDebugEnabled()Accessor for whether debug logging is enabledbooleanisInfoEnabled()Accessor for whether info logging is enabledvoidwarn(Object msg)Log a warning message.voidwarn(Object msg, Throwable thr)Log a warning message with throwable.-
Methods inherited from class org.datanucleus.util.NucleusLogger
getLoggerInstance
-
-
-
-
Constructor Detail
-
Log4JLogger
public Log4JLogger(String logName)
Constructor using Log4J.- Parameters:
logName- Name of the logging category
-
-
Method Detail
-
getNativeLogger
public Object getNativeLogger()
Description copied from class:NucleusLoggerAccessor for the native logger object.- Specified by:
getNativeLoggerin classNucleusLogger- Returns:
- The native logger object
-
debug
public void debug(Object msg)
Log a debug message.- Specified by:
debugin classNucleusLogger- Parameters:
msg- The message
-
debug
public void debug(Object msg, Throwable thr)
Log a debug message with throwable.- Specified by:
debugin classNucleusLogger- Parameters:
msg- The messagethr- A throwable
-
info
public void info(Object msg)
Log an info message.- Specified by:
infoin classNucleusLogger- Parameters:
msg- The message
-
info
public void info(Object msg, Throwable thr)
Log an info message with throwable.- Specified by:
infoin classNucleusLogger- Parameters:
msg- The messagethr- A throwable
-
warn
public void warn(Object msg)
Log a warning message.- Specified by:
warnin classNucleusLogger- Parameters:
msg- The message
-
warn
public void warn(Object msg, Throwable thr)
Log a warning message with throwable.- Specified by:
warnin classNucleusLogger- Parameters:
msg- The messagethr- A throwable
-
error
public void error(Object msg)
Log an error message.- Specified by:
errorin classNucleusLogger- Parameters:
msg- The message
-
error
public void error(Object msg, Throwable thr)
Log an error message with throwable.- Specified by:
errorin classNucleusLogger- Parameters:
msg- The messagethr- A throwable
-
fatal
public void fatal(Object msg)
Log an fatal message.- Specified by:
fatalin classNucleusLogger- Parameters:
msg- The message
-
fatal
public void fatal(Object msg, Throwable thr)
Log a fatal message with throwable.- Specified by:
fatalin classNucleusLogger- Parameters:
msg- The messagethr- A throwable
-
isDebugEnabled
public boolean isDebugEnabled()
Accessor for whether debug logging is enabled- Specified by:
isDebugEnabledin classNucleusLogger- Returns:
- Whether it is enabled
-
isInfoEnabled
public boolean isInfoEnabled()
Accessor for whether info logging is enabled- Specified by:
isInfoEnabledin classNucleusLogger- Returns:
- Whether it is enabled
-
-