diff --git a/README.md b/README.md index d64c51148b8..1b057603d67 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,7 @@ You only need to add the options you want to override. Config files are applied ## Create a pull request Before or after you create a pull request, sign the [contributor license agreement](http://grafana.org/docs/contributing/cla.html). + ## Contribute If you have any idea for an improvement or found a bug do not hesitate to open an issue. And if you have time clone this repo and submit a pull request and help me make Grafana diff --git a/public/app/plugins/datasource/influxdb/datasource.js b/public/app/plugins/datasource/influxdb/datasource.js index d066bc142ea..9adabe9a83f 100644 --- a/public/app/plugins/datasource/influxdb/datasource.js +++ b/public/app/plugins/datasource/influxdb/datasource.js @@ -43,7 +43,6 @@ function (angular, _, dateMath, InfluxSeries, InfluxQuery) { // build query var queryModel = new InfluxQuery(target); var query = queryModel.render(); - console.log(query); query = query.replace(/\$interval/g, (target.interval || options.interval)); return query;