}
catch ( NoSuchAlgorithmException e )
{
- getLogger().info( "An error occurred while preparing checksum observers", e );
+ getLogger().error( "An error occurred while preparing checksum observers: " + e.getMessage() );
}
return checksums;
}
}
catch ( TransferFailedException e )
{
- getLogger().warn( "An error occurred during the download of " + checksumPath + ": " + e.getMessage(),
- e );
+ getLogger().warn( "An error occurred during the download of " + checksumPath + ": " + e.getMessage() );
// do nothing try the next checksum
allNotFound = false;
}
catch ( ResourceDoesNotExistException e )
{
- getLogger().debug( "The checksum did not exist: " + checksumPath, e );
+ getLogger().debug( "The checksum did not exist: " + checksumPath + "; " + e.getMessage() );
// do nothing try the next checksum
// remove it if it is present locally in case there is an old incorrect one
if ( checksumFile.exists() )
}
catch ( AuthorizationException e )
{
- getLogger().warn( "An error occurred during the download of " + checksumPath + ": " + e.getMessage(),
- e );
+ getLogger().warn( "An error occurred during the download of " + checksumPath + ": " + e.getMessage() );
// do nothing try the next checksum
allNotFound = false;
}
catch ( IOException e )
{
- getLogger().warn( "An error occurred while reading the temporary checksum file.", e );
+ getLogger().warn( "An error occurred while reading the temporary checksum file: " + e.getMessage() );
// do nothing try the next checksum
allNotFound = false;
}
catch ( DigesterException e )
{
- getLogger().warn( "The checksum was invalid: " + checksumPath + ": " + e.getMessage(), e );
+ getLogger().warn( "The checksum was invalid: " + checksumPath + ": " + e.getMessage() );
// do nothing try the next checksum
allNotFound = false;
<role-hint>test</role-hint>
<implementation>org.apache.maven.repository.proxy.WagonDelegate</implementation>
</component>
+ <component>
+ <role>org.codehaus.plexus.logging.LoggerManager</role>
+ <implementation>org.codehaus.plexus.logging.console.ConsoleLoggerManager</implementation>
+ <lifecycle-handler>basic</lifecycle-handler>
+
+ <configuration>
+ <threshold>ERROR</threshold>
+ </configuration>
+ </component>
</components>
</component-set>