token-util - warn via loglevel on token lookup failure

feature/default_network_editable
kumavis 7 years ago committed by GitHub
parent 708422432c
commit 666c1f1b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      ui/app/token-util.js

@ -1,3 +1,4 @@
const log = require('loglevel')
const util = require('./util') const util = require('./util')
function tokenInfoGetter () { function tokenInfoGetter () {
@ -29,7 +30,7 @@ async function getSymbolAndDecimals (tokenAddress, existingTokens = []) {
token.decimals(), token.decimals(),
]) ])
} catch (err) { } catch (err) {
console.log(`symbol() and decimal() calls for token at address ${tokenAddress} resulted in error:`, err) log.warn(`symbol() and decimal() calls for token at address ${tokenAddress} resulted in error:`, err)
} }
const [ symbol = [], decimals = [] ] = result const [ symbol = [], decimals = [] ] = result

Loading…
Cancel
Save