I have a presentation teplate, which gives compilation error. How can I debug this code ? Is there any CLT available for debugging ? In C programming, we get tool which walks us step by step on how code is getting executed. Is there any tool available in perl for debugging ?
perl -d perlfile.plBut in Interwoven, perl debugging perform by creating a log file in which debugging is written.You can write debug code like below:
$DEBUG = 1;$debugfile = "$iwhome/tmp/project/mytpl.log";debug("^^^^^^^^^^^");$FLAG=false;debug($FLAG);
HTH,
Perl's built-in debugger can be invoked simply by adding the -d option to your Perl command line, like below:perl -d perlfile.plBut in Interwoven, perl debugging perform by creating a log file in which debugging is written.You can write debug code like below: $DEBUG = 1;$debugfile = "$iwhome/tmp/project/mytpl.log";debug("^^^^^^^^^^^");$FLAG=false;debug($FLAG);HTH,