1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-13 06:54:07 +00:00

Added log statement

This commit is contained in:
Leslie Tilton
2026-01-23 12:06:33 -06:00
parent e8cdd5ca1a
commit 4f569dfad9

View File

@@ -210,6 +210,9 @@ export class PhishingIndexedDbService {
db = await this.openDatabase();
await this.clearStore(db);
await this.processStream(db, stream);
this.logService.info(
"[PhishingIndexedDbService] Finished saving urls to the store from stream.",
);
return true;
} catch (error) {
this.logService.error("[PhishingIndexedDbService] Stream save failed", error);