com.jayway.maven.plugins.android.phase01generatesources.MavenILogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
package com.jayway.maven.plugins.android.phase01generatesources;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.utils.ILogger;
import org.apache.maven.plugin.logging.Log;
import java.util.Formatter;
/**
* Adapter from the Android Utils ILogger interface to the Maven plugins log.
*/
public class MavenILogger implements ILogger
{
private final Log log;
public MavenILogger( Log log )
{
this.log = log;
}
@Override
public void error( @Nullable Throwable throwable, @Nullable String s, Object... objects )
{
if ( ( throwable != null ) && ( s != null ) )
{
final Formatter formatter = new Formatter();
log.error( formatter.format( s, objects ).out().toString(), throwable );
}
else if ( ( throwable == null ) && ( s == null ) )
{
// do nothing.
}
else if ( throwable != null )
{
log.error( throwable );
}
else
{
final Formatter formatter = new Formatter();
log.error( formatter.format( s, objects ).out().toString() );
}
}
@Override
public void warning( @NonNull String s, Object... objects )
{
final Formatter formatter = new Formatter();
log.warn( formatter.format( s, objects ).out().toString() );
}
@Override
public void info( @NonNull String s, Object... objects )
{
final Formatter formatter = new Formatter();
log.info( formatter.format( s, objects ).out().toString() );
}
@Override
public void verbose( @NonNull String s, Object... objects )
{
final Formatter formatter = new Formatter();
log.debug( formatter.format( s, objects ).out().toString() );
}
}