@sentry/serverless 6.14.3
Have errors that are being reported to Sentry from our Google Functions handled by our custom logger as well
Sentry uses a wrapper to wrap your google function in order to catch any errors thrown up the stack (see the issue that spawned this implementation here). With this implementation, the errors that are caught by their wrapper are sent to Sentry and you cannot do anything else with them. That means if you are testing locally, there will be no stacktrace printed. You will also not see any errors in your logs when you review them to find out what produced the error. Both situations prove to be particularly frustrating.
console.log, but nothing is printed when you throw an error in your function.Any ideas or solutions wouly be appreciated.