diff --git a/crypto.js b/crypto.js index ffd56b8..905f33d 100644 --- a/crypto.js +++ b/crypto.js @@ -5,10 +5,10 @@ if (typeof process != "undefined") { crypto = await import('crypto'); if(typeof crypto.webcrypto != "undefined"){ crypto = crypto.webcrypto; - console.log("subtle"); + console.log("ilmk: using subtle"); }else{ node = true; - console.log("node crypto"); + console.log("ilmk: using node crypto"); } }else{ crypto = window.crypto;