com.openpojo.log.impl.Log4JLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openpojo Show documentation
Show all versions of openpojo Show documentation
This project was born out of a need to validate all POJOs (Plain Old Java Object) are behaving correctly.
This project has two main aspects to it:
* Make Testing as easy as possible.
* Simplifying identity management (hashCode / equals) using annotation.
/*
* Copyright (c) 2010-2015 Osman Shoukry
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License or any
* later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package com.openpojo.log.impl;
import com.openpojo.business.BusinessIdentity;
import com.openpojo.log.Logger;
/**
* This class wraps the Log4J underlying layer.
*/
public final class Log4JLogger extends Logger {
private final org.apache.log4j.Logger logger;
private Log4JLogger(final String category) {
logger = org.apache.log4j.Logger.getLogger(category);
}
@Override
public boolean isTraceEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.TRACE);
}
@Override
public boolean isDebugEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.DEBUG);
}
@Override
public boolean isInfoEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.INFO);
}
@Override
public boolean isErrorEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.ERROR);
}
@Override
public boolean isFatalEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.FATAL);
}
@Override
public boolean isWarnEnabled() {
return logger.isEnabledFor(org.apache.log4j.Level.WARN);
}
@Override
public void trace(final Object message) {
logger.trace(format(message));
}
@Override
public void debug(final Object message) {
logger.debug(format(message));
}
@Override
public void info(final Object message) {
logger.info(format(message));
}
@Override
public void warn(final Object message) {
logger.warn(format(message));
}
@Override
public void error(final Object message) {
logger.error(format(message));
}
@Override
public void fatal(final Object message) {
logger.fatal(format(message));
}
@Override
public String toString() {
return BusinessIdentity.toString(this);
}
}