test_: add log for `SaveAccountAndLoginWithKeycard

This commit is contained in:
frank 2024-06-21 18:37:29 +08:00 committed by Siddarth Kumar
parent d4f977283e
commit 3d8fae33e5
No known key found for this signature in database
GPG Key ID: 599D10112BF518DB
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@
(defn save-multiaccount-and-login-with-keycard
"NOTE: chat-key is a whisper private key sent from keycard"
[key-uid multiaccount-data password settings config accounts-data chat-key]
(log/debug "[native-module] save-account-and-login-with-keycard")
(log/debug "[native-module] save-account-and-login-with-keycard" key-uid multiaccount-data password settings config accounts-data chat-key)
(init-keystore
key-uid
#(.saveAccountAndLoginWithKeycard
@ -210,7 +210,7 @@
(defn login-with-keycard
[{:keys [key-uid multiaccount-data password chat-key]}]
(log/debug "[native-module] login-with-keycard")
(log/debug "[native-module] login-with-keycard" key-uid multiaccount-data password chat-key)
(clear-web-data)
(init-keystore
key-uid

View File

@ -60,7 +60,7 @@
;; CONFIG VALUES
(def log-level
(string/upper-case (get-config :LOG_LEVEL "")))
(string/upper-case "debug"))
(def fleet (get-config :FLEET "eth.staging"))
(def apn-topic (get-config :APN_TOPIC "im.status.ethereum"))
(def default-network (get-config :DEFAULT_NETWORK "goerli_rpc"))