Decrease send metrics client log level

This commit is contained in:
Chocobozzz 2024-05-30 10:41:33 +02:00
parent 72d8ae7edd
commit 713e489de4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -131,7 +131,7 @@ class MetricsPlugin extends Plugin {
const headers = new Headers({ 'Content-type': 'application/json; charset=UTF-8' })
return fetch(this.options_.metricsUrl(), { method: 'POST', body: JSON.stringify(body), headers })
.catch(err => logger.error('Cannot send metrics to the server.', err))
.catch(err => logger.warn('Cannot send metrics to the server.', err))
}, this.options_.metricsInterval())
}