diff options
Diffstat (limited to 'src/query.ts')
-rw-r--r-- | src/query.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/query.ts b/src/query.ts index e45596c66..290d02a2a 100644 --- a/src/query.ts +++ b/src/query.ts @@ -685,6 +685,7 @@ export class QueryRoot { put<T>(store: Store<T>, val: T, keyName?: string): QueryRoot { this.checkFinished(); const doPut = (tx: IDBTransaction) => { + console.log("put into", store.name, "value", val); const req = tx.objectStore(store.name).put(val); if (keyName) { req.onsuccess = () => { |