Java org.apache.commons.logging Log fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.logging Log fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.logging Log.

The text is from its open source code.

Implementation

org.apache.commons.logging.Log has the following implementations.
Click this link to see all its implementation.

Method

voiddebug(Object message)
Logs a message with debug log level.
voiddebug(Object message, Throwable t)
Logs an error with debug log level.
voiderror(Object message)
Logs a message with error log level.
voiderror(Object message, Throwable t)
Logs an error with error log level.
voidfatal(Object message)
Logs a message with fatal log level.
voidfatal(Object message, Throwable t)
Logs an error with fatal log level.
ClassgetClass()
Returns the runtime class of this Object .
voidinfo(Object message)
Logs a message with info log level.
voidinfo(Object message, Throwable t)
Logs an error with info log level.
booleanisDebugEnabled()
Is debug logging currently enabled?
booleanisErrorEnabled()
Is error logging currently enabled?
booleanisFatalEnabled()
Is fatal logging currently enabled?
booleanisInfoEnabled()
Is info logging currently enabled?
booleanisTraceEnabled()
Is trace logging currently enabled?
booleanisWarnEnabled()
Is warn logging currently enabled?
StringtoString()
Returns a string representation of the object.
voidtrace(Object message)
Logs a message with trace log level.
voidtrace(Object message, Throwable t)
Logs an error with trace log level.
voidwarn(Object message)
Logs a message with warn log level.
voidwarn(Object message, Throwable t)
Logs an error with warn log level.