mirror of https://github.com/apache/maven.git
Add some debug trace
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@168221 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e94fd427f3
commit
bd9a7f4f7b
|
@ -27,6 +27,7 @@ import org.codehaus.plexus.util.introspection.ReflectionValueExtractor;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
* @author <a href="mailto:jason@maven.org">Jason van Zyl</a>
|
||||||
|
@ -106,6 +107,11 @@ public class PluginParameterExpressionEvaluator
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
value = context.lookupMap( role );
|
value = context.lookupMap( role );
|
||||||
|
for ( Iterator i = ((Map) value).keySet().iterator(); i.hasNext(); )
|
||||||
|
{
|
||||||
|
String key = (String) i.next();
|
||||||
|
context.getLog().debug( key + " report is found." );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch ( ComponentLookupException cle )
|
catch ( ComponentLookupException cle )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue