diff --git a/apps/activityreminder/app.js b/apps/activityreminder/app.js index 0691b2d76..39c5bc71f 100644 --- a/apps/activityreminder/app.js +++ b/apps/activityreminder/app.js @@ -3,7 +3,6 @@ function drawAlert(){ title:"Activity reminder", buttons : {"Ok": true,"Dismiss": false} }).then(function(v) { - console.log(stepsArray); // todo remove if(v == true){ stepsArray = stepsArray.slice(0, activityreminder.maxInnactivityMin - 3); require("activityreminder").saveStepsArray(stepsArray); diff --git a/apps/activityreminder/boot.js b/apps/activityreminder/boot.js index de48be003..0f89bf543 100644 --- a/apps/activityreminder/boot.js +++ b/apps/activityreminder/boot.js @@ -1,7 +1,6 @@ function run(){ var now = new Date(); var h = now.getHours(); - console.log(stepsArray); // todo remove if(h >= activityreminder.startHour && h < activityreminder.endHour){ var health = Bangle.getHealthStatus("day"); stepsArray.unshift(health.steps);