com.github.stephenc.continuous.gittimestamp.GitCommandLineLogger Maven / Gradle / Ivy
/*
* Copyright 2019 Stephen Connolly
*
* 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 com.github.stephenc.continuous.gittimestamp;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.scm.log.ScmLogger;
/**
* Log adapter.
*/
class GitCommandLineLogger implements ScmLogger {
private AbstractMojo mojo;
public GitCommandLineLogger(AbstractMojo mojo) {
this.mojo = mojo;
}
@Override
public boolean isDebugEnabled() {
return mojo.getLog().isDebugEnabled();
}
@Override
public void debug(String content) {
mojo.getLog().debug(content);
}
@Override
public void debug(String content, Throwable error) {
mojo.getLog().debug(content, error);
}
@Override
public void debug(Throwable error) {
mojo.getLog().debug(error);
}
@Override
public boolean isInfoEnabled() {
return mojo.getLog().isInfoEnabled();
}
@Override
public void info(String content) {
mojo.getLog().info(content);
}
@Override
public void info(String content, Throwable error) {
mojo.getLog().info(content, error);
}
@Override
public void info(Throwable error) {
mojo.getLog().info(error);
}
@Override
public boolean isWarnEnabled() {
return mojo.getLog().isWarnEnabled();
}
@Override
public void warn(String content) {
mojo.getLog().warn(content);
}
@Override
public void warn(String content, Throwable error) {
mojo.getLog().warn(content, error);
}
@Override
public void warn(Throwable error) {
mojo.getLog().warn(error);
}
@Override
public boolean isErrorEnabled() {
return mojo.getLog().isErrorEnabled();
}
@Override
public void error(String content) {
mojo.getLog().error(content);
}
@Override
public void error(String content, Throwable error) {
mojo.getLog().error(content, error);
}
@Override
public void error(Throwable error) {
mojo.getLog().error(error);
}
}