<< pyShowPrivate Python Interaction Mechanism in Scilab pyTuple >>

Python Interaction Mechanism in Scilab >> Python Interaction Mechanism in Scilab > pyTrace

pyTrace

Enable/disable log information.

Calling Sequence

pyTrace([fileName])

Arguments

fileName

A string.

Description

To enable logging, a correct file name must be given. Several information are written and could be useful to help the debugging.

To disable logging (or stop it), pyTrace without any arguments must be used.

Examples

// Start logging
pyTrace(TMPDIR+"/foo.log")
a = pyWrap(1:10);
b = a + (20:30);

// Stop logging
pyTrace();

pyRemove a b

History

VersionDescription
5.4.0 Python module.

Report an issue
<< pyShowPrivate Python Interaction Mechanism in Scilab pyTuple >>