taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 2be510b4ef1062ce9679910c341177c28e4447b1
parent fe7dc1e672ce755bbce115cbdce4fded36673543
Author: Florian Dold <florian@dold.me>
Date:   Thu,  3 Sep 2026 12:15:05 +0200

qtart: log db backend on trace

Diffstat:
Mpackages/taler-wallet-core/src/host-impl.qtart.ts | 22+++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/packages/taler-wallet-core/src/host-impl.qtart.ts b/packages/taler-wallet-core/src/host-impl.qtart.ts @@ -43,11 +43,12 @@ import { import { createPlatformHttpLib } from "@gnu-taler/taler-util/http"; import { qjsOs, qjsStd } from "@gnu-taler/taler-util/qtart"; import { SynchronousCryptoWorkerFactoryPlain } from "./crypto/workers/synchronousWorkerFactoryPlain.js"; +import { WalletDbHandle } from "./db/handle.js"; +import { IdbWalletDbHandle } from "./db/indexeddb/handle.js"; import { - acquireSqliteWalletDbOwnership, - DefaultNodeWalletArgs, - getSqlite3FilenameFromStoragePath, -} from "./host-common.js"; + importWalletDbDump, + readWalletDbSqliteFile, +} from "./db/migration/import.js"; import { dropExpiredMigrationBackup, inspectWalletDbFile, @@ -55,14 +56,13 @@ import { openNativeWalletDbForEmptyStorage, } from "./db/migration/native.js"; import { openNativeSqliteWalletDb } from "./db/sqlite/database.js"; -import { Wallet } from "./wallet.js"; -import { WalletDbHandle } from "./db/handle.js"; -import { IdbWalletDbHandle } from "./db/indexeddb/handle.js"; import { SqliteWalletDbHandle } from "./db/sqlite/handle.js"; import { - importWalletDbDump, - readWalletDbSqliteFile, -} from "./db/migration/import.js"; + acquireSqliteWalletDbOwnership, + DefaultNodeWalletArgs, + getSqlite3FilenameFromStoragePath, +} from "./host-common.js"; +import { Wallet } from "./wallet.js"; const logger = new Logger("host-impl.qtart.ts"); @@ -324,7 +324,7 @@ async function makeSqliteDb( ); } if (kind === "native") { - logger.info("opening the wallet database with the native schema"); + logger.trace("opening the wallet database with the native schema"); await dropExpiredMigrationBackup(db); return addQtartDatabaseCapabilities( new SqliteWalletDbHandle(await openNativeSqliteWalletDb(db)),