Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix picklekey debug (#12845)
Browse files Browse the repository at this point in the history
#12831 added some logging,
but I messed it up
  • Loading branch information
richvdh authored Jul 30, 2024
1 parent 0204724 commit bc21ed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lifecycle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ export async function restoreFromLocalStorage(opts?: { ignoreGuest?: boolean }):

const pickleKey = (await PlatformPeg.get()?.getPickleKey(userId, deviceId ?? "")) ?? undefined;
if (pickleKey) {
logger.log("Got pickle key for ${userId}|${deviceId}");
logger.log(`Got pickle key for ${userId}|${deviceId}`);
} else {
logger.log("No pickle key available");
}
Expand Down

0 comments on commit bc21ed3

Please sign in to comment.