diff --git a/functions/decrypt.js b/functions/decrypt.js
index e294320..c1da482 100644
--- a/functions/decrypt.js
+++ b/functions/decrypt.js
@@ -24,6 +24,8 @@ const decrypt = ({ encryptedString, encryptionKey, encryptionSalt }) => {
         return decrypted;
     } catch (error) {
         console.log("Error in decrypting =>", error.message);
+        console.log("encryptionKey =>", encryptionKey);
+        console.log("encryptionSalt =>", encryptionSalt);
         return null;
     }
 };
diff --git a/package.json b/package.json
index aba5070..75b7316 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
     "name": "datasquirel",
-    "version": "1.6.3",
+    "version": "1.6.4",
     "description": "Cloud-based SQL data management tool",
     "main": "index.js",
     "bin": {