mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-28 21:06:50 +01:00
Comment out chatty debug output
This commit is contained in:
parent
3236e20657
commit
f2ff1991da
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user