instead.
Method from org.apache.commons.logging.impl.Log4JCategoryLog Detail: |
public void debug(Object message) {
category.log(FQCN, Priority.DEBUG, message, null);
} Deprecated!Log a message to the Log4j Category with DEBUG priority. |
public void debug(Object message,
Throwable t) {
category.log(FQCN, Priority.DEBUG, message, t );
} Deprecated!Log an error to the Log4j Category with DEBUG priority. |
public void error(Object message) {
category.log(FQCN, Priority.ERROR, message, null );
} Deprecated!Log a message to the Log4j Category with ERROR priority. |
public void error(Object message,
Throwable t) {
category.log(FQCN, Priority.ERROR, message, t );
} Deprecated!Log an error to the Log4j Category with ERROR priority. |
public void fatal(Object message) {
category.log(FQCN, Priority.FATAL, message, null );
} Deprecated!Log a message to the Log4j Category with FATAL priority. |
public void fatal(Object message,
Throwable t) {
category.log(FQCN, Priority.FATAL, message, t );
} Deprecated!Log an error to the Log4j Category with FATAL priority. |
public Category getCategory() {
return (this.category);
} Deprecated!Return the native Category instance we are using. |
public void info(Object message) {
category.log(FQCN, Priority.INFO, message, null );
} Deprecated!Log a message to the Log4j Category with INFO priority. |
public void info(Object message,
Throwable t) {
category.log(FQCN, Priority.INFO, message, t );
} Deprecated!Log an error to the Log4j Category with INFO priority. |
public boolean isDebugEnabled() {
return category.isDebugEnabled();
} Deprecated!Check whether the Log4j Category used is enabled for DEBUG priority. |
public boolean isErrorEnabled() {
return category.isEnabledFor(Priority.ERROR);
} Deprecated!Check whether the Log4j Category used is enabled for ERROR priority. |
public boolean isFatalEnabled() {
return category.isEnabledFor(Priority.FATAL);
} Deprecated!Check whether the Log4j Category used is enabled for FATAL priority. |
public boolean isInfoEnabled() {
return category.isInfoEnabled();
} Deprecated!Check whether the Log4j Category used is enabled for INFO priority. |
public boolean isTraceEnabled() {
return category.isDebugEnabled();
} Deprecated!Check whether the Log4j Category used is enabled for TRACE priority.
For Log4J, this returns the value of isDebugEnabled() |
public boolean isWarnEnabled() {
return category.isEnabledFor(Priority.WARN);
} Deprecated!Check whether the Log4j Category used is enabled for WARN priority. |
public void trace(Object message) {
category.log(FQCN, Priority.DEBUG, message, null);
} Deprecated!Log a message to the Log4j Category with TRACE priority.
Currently logs to DEBUG level in Log4J. |
public void trace(Object message,
Throwable t) {
category.log(FQCN, Priority.DEBUG, message, t );
} Deprecated!Log an error to the Log4j Category with TRACE priority.
Currently logs to DEBUG level in Log4J. |
public void warn(Object message) {
category.log(FQCN, Priority.WARN, message, null );
} Deprecated!Log a message to the Log4j Category with WARN priority. |
public void warn(Object message,
Throwable t) {
category.log(FQCN, Priority.WARN, message, t );
} Deprecated!Log an error to the Log4j Category with WARN priority. |