Hi @BlondAdka !
Try these best practices:-
1. Have you tried implementing logging in your flow?
- If not, try creating a text file or .html file (save as from text file).
- Use html tags like 'p' (paragraph tag) etc.
- Also add date and time to see when your flow has executed an action. Example like given below:

2. Have you tried implementing error handling in your flow?
- If not, try using the 'On-block error' action for a block of actions. This will immediately get the error within that block of actions. Use a variable to store that error.
- You can also use 'Get last error' action which creates a variable to store the last error you got in your flow and then add this to your log file.
- Use the 'Retry' policy for a particular action where the error occurs.
- Use 'Continue flow run' in the actions you think are giving an error. Repeat action, Go to next action or Go to label (will be usable if you created a label in your flow). Example like given below:

- When logging errors, use a 'style' attribute in your tags with hex code or color red indicating an error has occurred.
I hope this helps.