Skip to content

Commit

Permalink
Removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
coderReview authored and elwills committed Feb 28, 2023
1 parent e1014e4 commit 45db6e8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ e2e-results/
# Editor
.idea

# VS Code
.vscode

# Codealike
codealike.json
2 changes: 1 addition & 1 deletion dist/module.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"screenshots": [],
"version": "3.1.0",
"updated": "2023-02-09"
"updated": "2023-02-28"
},
"dependencies": {
"grafanaDependency": ">=8.4.0",
Expand Down
2 changes: 0 additions & 2 deletions src/datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,6 @@ export class PiWebAPIDatasource extends DataSourceApi<PIWebAPIQuery, PIWebAPIDat
}
} else {
url += '/streamsets';
console.log(target);
if (isSummary) {
url += '/summary' + timeRange + '&intervals=' + query.maxDataPoints + this.getSummaryUrl(target.summary);
} else if (target.interpolate && target.interpolate.enable) {
Expand Down Expand Up @@ -946,7 +945,6 @@ export class PiWebAPIDatasource extends DataSourceApi<PIWebAPIQuery, PIWebAPIDat
);
} else {
each(value.Content.Items, (item) => {
console.log(item);
each(
ds.processResults(item, target, displayName || item.Name || targetName, noTemplate),
(targetResult) => targetResults.push(targetResult)
Expand Down

0 comments on commit 45db6e8

Please sign in to comment.