net.bytebuddy.build.gradle.GradleBuildLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of byte-buddy-gradle-plugin Show documentation
Show all versions of byte-buddy-gradle-plugin Show documentation
A plugin for post-processing class files via Byte Buddy in a Gradle build.
The newest version!
/*
* Copyright 2014 - Present Rafael Winterhalter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.bytebuddy.build.gradle;
import net.bytebuddy.build.BuildLogger;
import org.gradle.api.logging.Logger;
/**
* A {@link BuildLogger} implementation for a Gradle {@link Logger}.
*/
public class GradleBuildLogger implements BuildLogger {
/**
* The logger to delegate to.
*/
private final Logger logger;
/**
* Creates a new Gradle build logger.
*
* @param logger The logger to delegate to.
*/
public GradleBuildLogger(Logger logger) {
this.logger = logger;
}
/**
* {@inheritDoc}
*/
public boolean isDebugEnabled() {
return logger.isDebugEnabled();
}
/**
* {@inheritDoc}
*/
public void debug(String message) {
logger.debug(message);
}
/**
* {@inheritDoc}
*/
public void debug(String message, Throwable throwable) {
logger.debug(message, throwable);
}
/**
* {@inheritDoc}
*/
public boolean isInfoEnabled() {
return logger.isInfoEnabled();
}
/**
* {@inheritDoc}
*/
public void info(String message) {
logger.info(message);
}
/**
* {@inheritDoc}
*/
public void info(String message, Throwable throwable) {
logger.info(message, throwable);
}
/**
* {@inheritDoc}
*/
public boolean isWarnEnabled() {
return logger.isWarnEnabled();
}
/**
* {@inheritDoc}
*/
public void warn(String message) {
logger.warn(message);
}
/**
* {@inheritDoc}
*/
public void warn(String message, Throwable throwable) {
logger.warn(message, throwable);
}
/**
* {@inheritDoc}
*/
public boolean isErrorEnabled() {
return logger.isErrorEnabled();
}
/**
* {@inheritDoc}
*/
public void error(String message) {
logger.error(message);
}
/**
* {@inheritDoc}
*/
public void error(String message, Throwable throwable) {
logger.error(message, throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy