Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Jul 23, 2023
1 parent f0297a0 commit db17e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/sfuhrm/radiorecorder/RadioRunnable.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public RadioRunnable(ConsumerContext consumerContext) {
@Override
public void run() {
MDC.put("id", Integer.toString(consumerContext.getId()));
log.debug("Station UUID is {} and directory is {}", consumerContext.getRadio().getUuid());
log.debug("Station UUID is {}", consumerContext.getRadio().getUuid());
try {
configurator.consume(consumerContext.getUrl());
}
Expand Down

0 comments on commit db17e29

Please sign in to comment.