Skip to content

Commit

Permalink
Reduce noise in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Nov 6, 2023
1 parent 07c37cd commit 99ae780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/deepsymmetry/beatlink/BeatSender.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void run() {
//noinspection BusyWait
Thread.sleep(sleepMilliseconds - SLEEP_THRESHOLD);
} catch (InterruptedException e) {
logger.info("BeatSender thread interrupted, re-evaluating time until next beat.");
logger.debug("BeatSender thread interrupted, re-evaluating time until next beat.");
}
} else { // Close enough to busy-wait until it is time to send the beat.
final long targetTime = System.nanoTime() + TimeUnit.MILLISECONDS.toNanos(sleepMilliseconds);
Expand Down

0 comments on commit 99ae780

Please sign in to comment.