Hi
I am developing a perl script to run the test case from command prompt.
I want to redirect the printfs in the code from CCS Console window to log file using perl
Please help me how to do this.
Thanks in advance
Prathuesh Prem
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi
I am developing a perl script to run the test case from command prompt.
I want to redirect the printfs in the code from CCS Console window to log file using perl
Please help me how to do this.
Thanks in advance
Prathuesh Prem
Hello,
You can use the 'beginCIOLogging()' API ($debugSession is the created debug session in this case)
$debugSession->beginCIOLogging("C:/ciologfile.txt");
'endCIOLogging()' is used to disable CIO logging
$debugSession->endCIOLogging();
Thanks
ki