Hi all, It may seems a stupid question, but I can’...
# ask-community
a
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
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
Hey @Jacob Blanco thank you for your suggestion!