Skip to content

v1.0.1 - Optional Stack Trace and Logging Support

Choose a tag to compare

@dev-rashedin dev-rashedin released this 09 Jul 09:02
· 22 commits to main since this release

Added support to optionally hide stack traces and disable error logging in globalErrorHandler.

You can now configure via .env:

SHOW_STACK=false
LOG_ERROR=false

Or programmatically in the code:

setToolkitOptions({
showStack: false,
logError: false
});