Configuration.print()
Description
Appends a print filter to the current pipeline layout.
A print filter prints Data to the standard error.
- INPUT - Any types of Events.
- OUTPUT - Same Events as the input.
This filter is different from dump() in that:
- It only prints out Data events
- It dumps out Data object without formatting, so if the Data is not text, it could mess up your terminal
This filter passes everything down unaltered. It doesn't change anything in the event stream.
Syntax
pipy().pipeline().print()
Parameters
print()
Return Value
The same Configuration object.