mirror of https://github.com/apache/maven.git
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:
parent
4a4699c6ad
commit
22e2b4ab35
|
@ -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 ) )
|
||||
|
|
Loading…
Reference in New Issue