Skip to content

Script Development / Printing Logs print

Since the script editor is a web application, it does not support operations like step debugging that are generally available in an IDE.

Therefore, debugging can rely on runtime log outputs.

To ensure log outputs are collected by DataFlux Func and displayed in the script editor, DataFlux Func has re-packaged the print(...) function so that its output can be presented via a web page.

Only the output of the print(...) function will be displayed on the page

Other methods in Python that can output to the terminal are currently not supported for output in the web page output panel (e.g., pprint)

Example:

Python
1
print('Some log message')