From e2f96bf2546bf7d9d30b6bdf7fc04a2c53fd3825 Mon Sep 17 00:00:00 2001 From: Brandy Smith Date: Mon, 20 Jan 2025 16:44:25 -0500 Subject: [PATCH] docs(config): add logLevel to config options (#3998) --- docs/developing/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/developing/config.md b/docs/developing/config.md index 02ac03567e2..0f70b8da46d 100644 --- a/docs/developing/config.md +++ b/docs/developing/config.md @@ -178,6 +178,7 @@ Below are the config options that Ionic uses. | `loadingEnter` | `AnimationBuilder` | Provides a custom enter animation for all `ion-loading`, overriding the default "animation". | | `loadingLeave` | `AnimationBuilder` | Provides a custom leave animation for all `ion-loading`, overriding the default "animation". | | `loadingSpinner` | `SpinnerTypes` | Overrides the default spinner for all `ion-loading` overlays. | +| `logLevel` | `'OFF' \| 'ERROR' \| 'WARN'` | Configures the logging level for Ionic Framework. If `'OFF'`, no errors or warnings are logged. If `'ERROR'`, only errors are logged. If `'WARN'`, errors and warnings are logged. | | `menuIcon` | `string` | Overrides the default icon in all `` components. | | `menuType` | `string` | Overrides the default menu type for all `` components. | | `modalEnter` | `AnimationBuilder` | Provides a custom enter animation for all `ion-modal`, overriding the default "animation". |