REMOVE ME, log config

This commit is contained in:
Andrea Maria Piana 2024-08-15 08:03:35 +01:00
parent 3d205c837c
commit b43fc6fabf

View File

@ -3,11 +3,17 @@
[clojure.string :as string] [clojure.string :as string]
[native-module.core :as native-module] [native-module.core :as native-module]
[re-frame.core :as re-frame] [re-frame.core :as re-frame]
[taoensso.timbre :as log]
[status-im.config :as config] [status-im.config :as config]
[utils.transforms :as transforms])) [utils.transforms :as transforms]))
(defn tap [n]
(log/info "login-config" n)
n)
(defn login (defn login
[] []
(tap
{;; Temporary fix until https://github.com/status-im/status-go/issues/3024 is resolved {;; Temporary fix until https://github.com/status-im/status-go/issues/3024 is resolved
:wakuV2Nameserver "8.8.8.8" :wakuV2Nameserver "8.8.8.8"
:statusProxyEnabled config/status-proxy-enabled? :statusProxyEnabled config/status-proxy-enabled?
@ -29,7 +35,7 @@
:alchemyOptimismSepoliaToken config/ALCHEMY_OPTIMISM_SEPOLIA_TOKEN :alchemyOptimismSepoliaToken config/ALCHEMY_OPTIMISM_SEPOLIA_TOKEN
:alchemyArbitrumMainnetToken config/ALCHEMY_ARBITRUM_MAINNET_TOKEN :alchemyArbitrumMainnetToken config/ALCHEMY_ARBITRUM_MAINNET_TOKEN
:alchemyArbitrumGoerliToken config/ALCHEMY_ARBITRUM_GOERLI_TOKEN :alchemyArbitrumGoerliToken config/ALCHEMY_ARBITRUM_GOERLI_TOKEN
:alchemyArbitrumSepoliaToken config/ALCHEMY_ARBITRUM_SEPOLIA_TOKEN}) :alchemyArbitrumSepoliaToken config/ALCHEMY_ARBITRUM_SEPOLIA_TOKEN}))
(defn create (defn create
[] []