Skip to content

Commit

Permalink
comment out logging on preference change and runtiome logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobi Delbruck authored and Tobi Delbruck committed Dec 18, 2023
1 parent 7f55693 commit 3fe298f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ synchronized public EventPacket<? extends BasicEvent> filterPacket(EventPacket<?
final long timeSinceBiasChangeMs = System.currentTimeMillis() - biasChangedTimeMs;
if (timeSinceBiasChangeMs < 1000 * this.biasChangePauseS) {
lastComputeTimestamp = in.getLastTimestamp();
System.out.println(String.format("timeSinceBiasChangeMs=%d < %.0f",timeSinceBiasChangeMs,1000*this.biasChangePauseS));
// System.out.println(String.format("timeSinceBiasChangeMs=%d < %.0f",timeSinceBiasChangeMs,1000*this.biasChangePauseS));
return in;
} else {
biasChanged = false;
Expand Down Expand Up @@ -224,6 +224,6 @@ public float getBiasChangePauseS() {
synchronized public void setBiasChangePauseS(float biasChangePauseS) {
this.biasChangePauseS = biasChangePauseS;
putFloat("biasChangePauseS",biasChangePauseS);
log.info(String.format("Set biasChangePauseS=%.3fs",this.biasChangePauseS));
// log.info(String.format("Set biasChangePauseS=%.3fs",this.biasChangePauseS));
}
}

0 comments on commit 3fe298f

Please sign in to comment.