Hi I am running prefect on an on premises HPC with...
# prefect-community
s
Hi I am running prefect on an on premises HPC with no docker (can be installed) and my flow in not really serialisable (I need to figure out which step). i was just wondering what is the best SOP for tracking the source of issues that can brake the flow for debugging. In the current setup the output to the terminal shows only the log message for start and end and none of the logs i put in the code. When i test the flows locally all the logs output are visible at the terminal. Thanks a lot!
n
Hi @simone - if you're running your flow locally you should be able to see
print
statements by default; without seeing your code I can't tell you exactly what's going on here but I recommend taking a look at the Local Debugging docs for a lot of information on debugging strategies 🙂
s
thanks