1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-22 23:02:33 +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)) { if (!stats.containsKey(steps)) {
LOG.info("Adding: " + steps); // LOG.debug("Adding: " + steps);
stats.put(steps, timeDifference); stats.put(steps, timeDifference);
} else { } else {
long time = stats.get(steps); long time = stats.get(steps);
LOG.info("Updating: " + steps + " " + timeDifference + time); // LOG.debug("Updating: " + steps + " " + timeDifference + time);
stats.put(steps, timeDifference + time); stats.put(steps, timeDifference + time);
} }
} }