Skip to content

Commit

Permalink
Improve error logging for missing token prices
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrwitek committed Nov 8, 2024
1 parent 7d73145 commit bfeb5b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blockchain/prices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ export function createTokenPriceInUSD$(
[token]: new BigNumber(tokenPrice),
})
} catch (err) {
console.error(`could not find price for ${token} - no ticker configured`)
console.error(`could not find price for ${token}`)
console.error(err)

return of({})
}
Expand Down

0 comments on commit bfeb5b6

Please sign in to comment.