Changing more loggings levels.

refs #135
This commit is contained in:
softsimon
2020-10-13 16:43:09 +07:00
parent 4a14085908
commit 3d374fd9d9
8 changed files with 18 additions and 18 deletions

View File

@@ -22,7 +22,7 @@ class FiatConversion {
private updateCurrency() {
request('https://api.opennode.co/v1/rates', { json: true }, (err, res, body) => {
if (err) { return logger.info(err); }
if (err) { return logger.err(err); }
if (body && body.data) {
this.tickers = body.data;
}