summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-10-27 20:53:27 -0700
committerMatthew Miller <matthew@millerti.me>2023-10-27 20:53:27 -0700
commit91afb83ce0c5cbd236b26bb94cf18ea584a2ed0c (patch)
treec44451d22866643608b7c13510e14101a76d77c5 /packages/server/src
parent229a14d35cd780460b3fe1e3340b0384d33a521d (diff)
Remove console.log statements
Diffstat (limited to 'packages/server/src')
-rw-r--r--packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
index 3cf7ab6..11871a6 100644
--- a/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
+++ b/packages/server/src/helpers/iso/isoCrypto/getWebCrypto.ts
@@ -18,7 +18,6 @@ export async function getWebCrypto(): Promise<Crypto> {
const _globalThisCrypto = _getWebCryptoInternals.stubThisGlobalThisCrypto();
if (_globalThisCrypto) {
- console.log('globalThis.crypto');
webCrypto = _globalThisCrypto;
return webCrypto;
}
@@ -29,7 +28,6 @@ export async function getWebCrypto(): Promise<Crypto> {
const _nodeCrypto = await _getWebCryptoInternals.stubThisImportNodeCrypto();
if (_nodeCrypto?.webcrypto) {
- console.log('node:crypto');
webCrypto = _nodeCrypto.webcrypto as Crypto;
return webCrypto;
}