Commenting out debug pointcut because it causes class sizes to balloon.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@614620 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2008-01-23 18:54:20 +00:00
parent 4a4699c6ad
commit 22e2b4ab35
1 changed files with 9 additions and 9 deletions

View File

@ -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 ) )