diff --git a/lib/plugins/grafana/send-annotation.js b/lib/plugins/grafana/send-annotation.js index bfa69c8f0..aa8771f38 100644 --- a/lib/plugins/grafana/send-annotation.js +++ b/lib/plugins/grafana/send-annotation.js @@ -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(); }