diff --git a/packages/taler-wallet-core/src/host-impl.qtart.ts b/packages/taler-wallet-core/src/host-impl.qtart.ts index 390282f8c..720f5affb 100644 --- a/packages/taler-wallet-core/src/host-impl.qtart.ts +++ b/packages/taler-wallet-core/src/host-impl.qtart.ts @@ -168,10 +168,10 @@ export async function createNativeWalletHost2( let dbResp: MakeDbResult; if (args.persistentStoragePath && args.persistentStoragePath.endsWith(".json")) { - logger.info("using JSON file backend (slow!)"); + logger.info("using JSON file DB backend (slow!)"); dbResp = await makeFileDb(args); } else { - logger.info("using JSON file backend (experimental!)"); + logger.info("using sqlite3 DB backend (experimental!)"); dbResp = await makeSqliteDb(args) }