Remove superfluous update-token-balances logging

This commit is contained in:
Vitaliy Vlasov 2018-03-06 15:46:53 +02:00 committed by Tetiana Churikova
parent 58cf339620
commit 7b600f6f12

View File

@ -236,7 +236,7 @@
(defn update-bounty-token-balances (defn update-bounty-token-balances
"Helper function for updating internal ERC20 token balances to token multisig contract. Will be called periodically for all open bounty contracts." "Helper function for updating internal ERC20 token balances to token multisig contract. Will be called periodically for all open bounty contracts."
[issue-id bounty-addr watch-hash] [issue-id bounty-addr watch-hash]
(log/info "In update-bounty-token-balances for issue" issue-id) #_(log/info "In update-bounty-token-balances for issue" issue-id)
(doseq [[tla token-data] (token-data/as-map)] (doseq [[tla token-data] (token-data/as-map)]
(try (try
(let [balance (multisig/token-balance bounty-addr tla)] (let [balance (multisig/token-balance bounty-addr tla)]
@ -252,7 +252,7 @@
(catch Throwable ex (catch Throwable ex
(do (log/error "update-bounty-token-balances exception:" ex) (do (log/error "update-bounty-token-balances exception:" ex)
(clojure.stacktrace/print-stack-trace ex))))) (clojure.stacktrace/print-stack-trace ex)))))
(log/info "Exit update-bounty-token-balances")) #_(log/info "Exit update-bounty-token-balances"))
(defn update-contract-internal-balances (defn update-contract-internal-balances