mirror of https://github.com/apache/maven.git
Move some debug from info() to debug()
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@499053 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
345e8c3732
commit
62706826a1
|
@ -410,7 +410,7 @@ public class DefaultPluginManager
|
|||
|
||||
pluginDescriptor.setArtifacts( new ArrayList( artifacts ) );
|
||||
|
||||
getLogger().info( "Realm for plugin: " + plugin.getKey() + ":\n" + componentRealm );
|
||||
getLogger().debug( "Realm for plugin: " + plugin.getKey() + ":\n" + componentRealm );
|
||||
|
||||
pluginDescriptor.setClassRealm( componentRealm );
|
||||
}
|
||||
|
@ -715,12 +715,12 @@ public class DefaultPluginManager
|
|||
{
|
||||
ClassRealm oldRealm = container.setLookupRealm( realm );
|
||||
|
||||
getLogger().info( "Looking up mojo " + mojoDescriptor.getRoleHint() + " in realm " + realm.getId() + " - descRealmId=" + mojoDescriptor.getRealmId() );
|
||||
getLogger().debug( "Looking up mojo " + mojoDescriptor.getRoleHint() + " in realm " + realm.getId() + " - descRealmId=" + mojoDescriptor.getRealmId() );
|
||||
|
||||
plugin = (Mojo) container.lookup( Mojo.ROLE, mojoDescriptor.getRoleHint(), realm );
|
||||
|
||||
if ( plugin != null )
|
||||
getLogger().info( "Looked up - " + plugin + " - " + plugin.getClass().getClassLoader() );
|
||||
getLogger().debug( "Looked up - " + plugin + " - " + plugin.getClass().getClassLoader() );
|
||||
else// not needed i guess.
|
||||
getLogger().warn("No luck.");
|
||||
|
||||
|
|
Loading…
Reference in New Issue