diff --git a/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj b/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj index ef94f3dd52..0a4587b1d6 100644 --- a/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj +++ b/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj @@ -15,15 +15,15 @@ import java.util.List; public aspect CoreDebuggingAspect { - after() throwing ( RuntimeException e ): -// adviceexecution( ) -// && args( jp ) - call( * *..*.*(..)) - && !within( CoreDebuggingAspect+ ) - && !handler( * ) - { - System.out.println( "Error: " + e.getClass().getName() + "\nwas in join point: " + thisJoinPoint.toLongString() + "\n(at: " + thisJoinPoint.getSourceLocation() + ")" ); - } +// after() throwing ( RuntimeException e ): +//// adviceexecution( ) +//// && args( jp ) +// call( * *..*.*(..)) +// && !within( CoreDebuggingAspect+ ) +// && !handler( * ) +// { +// System.out.println( "Error: " + e.getClass().getName() + "\nwas in join point: " + thisJoinPoint.toLongString() + "\n(at: " + thisJoinPoint.getSourceLocation() + ")" ); +// } // after( MavenExecutionRequest request ) returning( List projects ): // call( List DefaultMaven.getProjects( MavenExecutionRequest ) )