feat!: API options object support to control sentry handling; removal of logger.sentry.
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/publish unknown status

This commit is contained in:
2026-08-07 12:07:29 -03:00
parent 9f18e0855e
commit 6bee3a801d
11 changed files with 1170 additions and 161 deletions
+19
View File
@@ -0,0 +1,19 @@
# @mifi/logger — environment variables
#
# Copy this file or set the variables in your container / process environment.
# Explicit `level` on createLogger() always takes precedence over these values.
# In browsers, sessionStorage.showLoggingFor is checked before these env vars.
# Override the log level for this process.
# One of: trace | debug | info | warn | error | silent
# When unset, the level defaults from the logger's `environment` option:
# development → trace
# staging → warn
# production → error
# MIFI_LOG_LEVEL=debug
# Optional comma-separated namespace filters applied together with MIFI_LOG_LEVEL.
# A filter matches the namespace exactly or as a prefix of a child
# (e.g. WIDGET matches WIDGET and WIDGET:Button).
# When unset (and MIFI_LOG_LEVEL is set), all namespaces are enabled at that level.
# MIFI_LOG_NAMESPACES=WIDGET,API