Skip to content

Commit

Permalink
Merge pull request #4197 from freimair/pricenode_logs
Browse files Browse the repository at this point in the history
Reduce log output for price nodes
  • Loading branch information
ripcurlx authored Apr 27, 2020
2 parents d35ab9f + 1b2c6c9 commit 18476e4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ private Map<String, Object> getMetadata(ExchangeRateProvider provider, Set<Excha
timestamp = getTimestamp(provider, exchangeRates);
} catch (Throwable t) {
log.error(t.toString());
t.printStackTrace();
if (log.isDebugEnabled())
t.printStackTrace();
}

if (provider instanceof BitcoinAverage.Local) {
Expand Down

0 comments on commit 18476e4

Please sign in to comment.