1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

Turn On Debug Info For 2 Keys (#10316)

This commit is contained in:
Justin Baur
2024-07-29 10:19:21 -04:00
committed by GitHub
parent f1c177b3cf
commit 271d65c953
2 changed files with 8 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ import { APPLICATION_ID_DISK, GlobalStateProvider, KeyDefinition } from "../stat
export const APP_ID_KEY = new KeyDefinition(APPLICATION_ID_DISK, "appId", {
deserializer: (value: string) => value,
cleanupDelayMs: 0,
debug: {
enableRetrievalLogging: true,
enableUpdateLogging: true,
},
});
export const ANONYMOUS_APP_ID_KEY = new KeyDefinition(APPLICATION_ID_DISK, "anonymousAppId", {
deserializer: (value: string) => value,