Remove console logs

This commit is contained in:
soulgalore 2019-12-04 21:51:27 +01:00
parent eb9f3e890d
commit 441015af83
1 changed files with 0 additions and 4 deletions

View File

@ -91,7 +91,6 @@ module.exports = {
'Content-Length': Buffer.byteLength(postData)
}
};
console.log(postData);
// If Grafana is behind auth, use it!
if (options.grafana.auth) {
log.debug('Using auth for Grafana');
@ -116,9 +115,6 @@ module.exports = {
reject(e);
} else {
res.setEncoding('utf8');
res.on('data', function(chunk) {
console.log('BODY: ' + chunk);
});
log.debug('Sent annotation to Grafana');
resolve();
}