https://prefect.io logo
a

ale

09/25/2020, 7:29 AM
Hi all, It may seems a stupid question, but I can’t find a way to print/log the name and the value of a parameter inside a Flow. How is it supposed to be done? Any help and directions is much appreciated 🙂
j

Jacob Blanco

09/25/2020, 7:41 AM
You need to pass it into a task and print it from there. That’s how I would do it. The parameter is itself a Task and the easiest way to get at the return value is to pass it into another task. This automatically unpacks the Task and gives you the value.
upvote 1
a

ale

09/25/2020, 7:46 AM
Hey @Jacob Blanco thank you for your suggestion!