Skip to content

Commit 5ec349f

Browse files
committed
Remove console.log call.
1 parent faf2103 commit 5ec349f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# bedrock-web-wallet ChangeLog
22

3+
## 14.6.4 - 2025-mm-dd
4+
5+
### Fixed
6+
- Removed debug log.
7+
38
## 14.6.3 - 2024-10-31
49

510
### Fixed

lib/helpers.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,12 @@ export const createProfile = async ({
145145
}
146146

147147
const t1 = Date.now();
148-
console.log('profile creation time', t1 - t0, 'ms');
149148

150-
return {profileAgent: user || profileAgent, profile: updatedProfile};
149+
return {
150+
profileAgent: user || profileAgent,
151+
profile: updatedProfile,
152+
creationTimeMs: t1 - t0
153+
};
151154
};
152155

153156
export async function openFirstPartyWindow(event) {

0 commit comments

Comments
 (0)