1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-03 11:33:19 +02:00

Comment out chatty debug output

This commit is contained in:
cpfeiffer 2018-04-20 20:30:01 +02:00
parent 3236e20657
commit f2ff1991da

View File

@ -85,11 +85,11 @@ class ActivityAnalysis {
}
if (!stats.containsKey(steps)) {
LOG.info("Adding: " + steps);
// LOG.debug("Adding: " + steps);
stats.put(steps, timeDifference);
} else {
long time = stats.get(steps);
LOG.info("Updating: " + steps + " " + timeDifference + time);
// LOG.debug("Updating: " + steps + " " + timeDifference + time);
stats.put(steps, timeDifference + time);
}
}