Remove console logs
This commit is contained in:
parent
eb9f3e890d
commit
441015af83
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue