function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
John Jones 17John Jones 17 

Flow error emails even though flow are working

I have a series of Flows that run a Travel agency and thier processes of booking trips. There is a combination of flows and code but most of the logic is handled within the flows.
All record updates seem to be working as the data is coming in correctly across the whole of the trip however, we are getting a number of flow error emails every day.

Does anyone know if there is a way to turn off the error emails or some good tips on troubleshooting the process so we can find where the issue is and fix it.
Heather ThompsonHeather Thompson
You can run the following query in your developer console to get the specific flow causing the issue:
Select id, developername from flowdefinition where id = 'IDFROMEMAIL'
From there you can enable degugging on the flow: More on that here (https://help.salesforce.com/articleView?id=process_troubleshoot_debuglogs.htm&type=0)