Open
Description
This issue was originally from Azure PowerShell Azure/azure-powershell#21732
Description of the new feature
The ~/.Azure/ErrorRecords folder has a log of all failed cmdlets.
We should clean this folder on a regular basis or not use it depending how the content is used.
Mitigation
If the customer function app does not have a dependency on the files (at this location), they can delete them with the following command. They can add this to one of their function's code:
Remove-Item ~/.Azure/ErrorRecords/* -ErrorAction SilentlyContinue