Remove console.log.

This commit is contained in:
Michael Stenta 2018-11-10 09:51:36 -05:00
parent 174286b876
commit cec49722b0
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@
// Iterate through the data and put it into the arrays.
for (var j = 0; j < data.length; j++) {
var tzoffset = (new Date()).getTimezoneOffset() * 60000;
console.log(tzoffset);
var date = new Date((data[j].timestamp * 1000) - tzoffset).toISOString();
dates.push(date);
values.push(data[j][name]);