Skip to main content

Needed to run a script for a client today to identify records that were in an error state and needed to be corrected. Before applying the fix, i wanted them to review the records and confirm that we could move forward.

I ended up exporting the raw log into #VSCode and using Find/Replace with a regular expression. Finding the regex below and replacing with nothing.

^(?!.*USER_DEBUG).*\n

So the question is, how would YOU export and clean up a raw debug log so that the client could easily review?  Any other processes, particular tools, VSCode extensions, etc. that i should take a look at?

0/9000