1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: reduce log-level for metrics

This commit is contained in:
Ivar Conradi Østhus 2020-04-19 20:57:54 +02:00
parent 562321175d
commit 2c90d3fbff

View File

@ -41,7 +41,7 @@ class ClientInstanceStore {
.whereRaw("created_at < now() - interval '2 days'")
.del()
.then(
res => res > 0 && this.logger.info(`Deleted ${res} instances`),
res => res > 0 && this.logger.debug(`Deleted ${res} instances`),
);
}