[MPLUGIN-234] Extreme amounts of debug logging.

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1412307 13f79535-47bb-0310-9956-ffa450edef68
master
Olivier Lamy 2012-11-21 21:27:04 +00:00
parent 40397727da
commit 411ab0bb48
1 changed files with 0 additions and 3 deletions

View File

@ -107,12 +107,10 @@ public class MojoClassVisitor
mojoAnnotatedClass = new MojoAnnotatedClass(); mojoAnnotatedClass = new MojoAnnotatedClass();
mojoAnnotatedClass.setClassName( Type.getObjectType( name ).getClassName() ).setParentClassName( mojoAnnotatedClass.setClassName( Type.getObjectType( name ).getClassName() ).setParentClassName(
Type.getObjectType( superName ).getClassName() ); Type.getObjectType( superName ).getClassName() );
logger.debug( "MojoClassVisitor#visit" );
} }
public AnnotationVisitor visitAnnotation( String desc, boolean visible ) public AnnotationVisitor visitAnnotation( String desc, boolean visible )
{ {
logger.debug( "MojoClassVisitor#visitAnnotation" );
String annotationClassName = Type.getType( desc ).getClassName(); String annotationClassName = Type.getType( desc ).getClassName();
if ( !MojoAnnotationsScanner.CLASS_LEVEL_ANNOTATIONS.contains( annotationClassName ) ) if ( !MojoAnnotationsScanner.CLASS_LEVEL_ANNOTATIONS.contains( annotationClassName ) )
{ {
@ -125,7 +123,6 @@ public class MojoClassVisitor
public FieldVisitor visitField( int access, String name, String desc, String signature, Object value ) public FieldVisitor visitField( int access, String name, String desc, String signature, Object value )
{ {
logger.debug( "MojoClassVisitor#visitField" );
MojoFieldVisitor mojoFieldVisitor = new MojoFieldVisitor( logger, name, Type.getType( desc ).getClassName() ); MojoFieldVisitor mojoFieldVisitor = new MojoFieldVisitor( logger, name, Type.getType( desc ).getClassName() );
fieldVisitors.add( mojoFieldVisitor ); fieldVisitors.add( mojoFieldVisitor );
return mojoFieldVisitor; return mojoFieldVisitor;