From 6bd4924c0bb659fdeb2e46c917c747f4598c3c71 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Thu, 19 Feb 2026 11:37:59 +0500 Subject: [PATCH] web: add logging about persistence type --- apps/web/src/bootstrap.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/web/src/bootstrap.tsx b/apps/web/src/bootstrap.tsx index f3df0ef93..9040a844c 100644 --- a/apps/web/src/bootstrap.tsx +++ b/apps/web/src/bootstrap.tsx @@ -24,7 +24,7 @@ import { initializeFeatureChecks, isFeatureSupported } from "./utils/feature-check"; -import { initializeLogger } from "./utils/logger"; +import { initializeLogger, logger } from "./utils/logger"; import { shouldShowWrapped } from "./utils/should-show-wrapped"; type Route = { @@ -198,6 +198,10 @@ export async function init() { ? ("memory" as const) : ("db" as const); + logger.info( + `Initializing key store with persistence: ${persistence} for path: ${path}` + ); + return { Component, path, props: route.props, persistence }; }