Changes between Initial Version and Version 1 of Development/Templates/Debugging


Ignore:
Timestamp:
May 21, 2007, 11:47:40 PM (18 years ago)
Author:
/C=FR/O=CNRS/OU=UMR8607/CN=Michel Jouvin/emailAddress=jouvin@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Development/Templates/Debugging

    v1 v1  
     1= Debugging Templates and Tools =
     2[[TracNav]]
     3
     4[[TOC(inline)]]
     5
     6This page describes debugging options availabe in templates and tools like SCDB or PAN compiler.
     7
     8== Templates ==
     9
     10Templates can produce (very) verbose output useful in particular to debug PAN functions. With PAN compiler v7+, you can display this debugging information using the option `-Dpan.debug.flag="true"` in `ant` command line.
     11
     12
     13== SCDB Tools ==
     14
     15Main SCDB Tool consist of `ant` task, written in Java. These tasks may print additional information for debugging, using the following flags :
     16 * compile.debug.task : debug compilation task (not the compiler). ''Works with panc v7+ only.''
     17 * deploy.debug.task : debug task associated with `deploy` target.
     18 * rep.debug.task : debug task associated with `update.rep.templates` target.
     19
     20To enable one of these flags, use `-D` option with `ant` command. For example :
     21{{{
     22ant -Dcompile.debug.task="true"
     23}}}