[Indexer] Set log level accordingly - Remove indexing ETAs

This commit is contained in:
nymkappa
2022-07-11 10:55:25 +02:00
parent 38fa8de01f
commit 38ac38849e
4 changed files with 25 additions and 11 deletions

View File

@@ -177,6 +177,8 @@ class PriceUpdater {
}
if (insertedCount > 0) {
logger.notice(`Inserted ${insertedCount} MtGox USD weekly price history into db`);
} else {
logger.debug(`Inserted ${insertedCount} MtGox USD weekly price history into db`);
}
// Insert Kraken weekly prices
@@ -251,6 +253,8 @@ class PriceUpdater {
if (totalInserted > 0) {
logger.notice(`Inserted ${totalInserted} hourly historical prices into the db`);
} else {
logger.debug(`Inserted ${totalInserted} hourly historical prices into the db`);
}
}
}