diff options
author | aclement <aclement> | 2004-11-05 11:00:41 +0000 |
---|---|---|
committer | aclement <aclement> | 2004-11-05 11:00:41 +0000 |
commit | edd6539e53d96e60f257952e582783c7d8aac25c (patch) | |
tree | 66b488764d1d7a9699d85513ed9cc3ce0129e1fe /docs | |
parent | aab9c2c57db1c014e03720676d7e3cac14a761aa (diff) | |
download | aspectj-edd6539e53d96e60f257952e582783c7d8aac25c.tar.gz aspectj-edd6539e53d96e60f257952e582783c7d8aac25c.zip |
Matthews fix for Bugzilla Bug 77163: Load time weaver default verbose settingV1_2_1
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dist/doc/examples/build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/dist/doc/examples/build.xml b/docs/dist/doc/examples/build.xml index 5dbea8f19..0797e898f 100644 --- a/docs/dist/doc/examples/build.xml +++ b/docs/dist/doc/examples/build.xml @@ -437,7 +437,7 @@ </java> <echo message="---------- running without tracing - FINISH "/> - <!-- run appliaction with LTW to add tracing --> + <!-- run application with LTW to add tracing --> <echo message="---------- running with tracing - START"/> <java classname="tracing.ExampleMain" fork="true"> @@ -447,6 +447,7 @@ <jvmarg line="-showversion"/> <sysproperty key="java.system.class.loader" value="org.aspectj.weaver.WeavingURLClassLoader"/> <sysproperty key="aj.weaving.verbose" value="True"/> + <sysproperty key="org.aspectj.weaver.showWeaveInfo" value="True"/> <sysproperty key="aj.class.path" path="${jar.dir}/tracingLib.jar:${jar.dir}/tracingApp.jar"/> <sysproperty key="aj.aspect.path" path="${jar.dir}/tracingLib.jar"/> </java> |