debugging a flatfile processing service

Hi guys, I have written a service for processing flat files(streamToBytes>bytesToString>convertToValues) and the files are picked up using file polling(input is a ffdata stream). I want to know if there is a way I can debug the service.

Thanks:happy:

You can put a save/restorePipeline just after your streamToBytes and disable all steps that appears before.

nb: Instead of using “streamToBytes>bytesToString>convertToValues”, you can just use convertToValues with the stream in the ffData in input.

Thankyou, that helped a lot