Log influxdb annotations on debug level, not info

This commit is contained in:
soulgalore 2019-10-17 20:42:56 +02:00
parent 368636b24a
commit a70e472f52
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ module.exports = {
}
return new Promise((resolve, reject) => {
log.info('Send annotation to Influx: %j', postData);
log.debug('Send annotation to Influx: %j', postData);
// not perfect but maybe work for us
const lib = options.influxdb.protocol === 'https' ? https : http;
const req = lib.request(postOptions, res => {