From ec1e7e9c64896aa41522500afe421f59bee880eb Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 14 Apr 2025 17:03:52 -0400 Subject: [PATCH] fix(core): need to export logging functions for this branch --- core/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/index.ts b/core/src/index.ts index 6ebc176eb3..9cdbdb50ae 100644 --- a/core/src/index.ts +++ b/core/src/index.ts @@ -8,7 +8,7 @@ export { getTimeGivenProgression } from './utils/animation/cubic-bezier'; export { createGesture } from './utils/gesture'; export { initialize } from './global/ionic-global'; export { componentOnReady } from './utils/helpers'; -export { LogLevel } from './utils/logging'; +export { LogLevel, printIonError, printIonWarning } from './utils/logging'; export { isPlatform, Platforms, PlatformConfig, getPlatforms } from './utils/platform'; export { IonicSafeString } from './utils/sanitization'; export { IonicConfig, getMode, setupConfig } from './utils/config';