Skip to content

Commit

Permalink
#624 fix: Enhance logging for cue sheet parsing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kagemomiji committed Nov 20, 2024
1 parent b242de3 commit 7cacdcf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1369,7 +1369,7 @@ private CueSheet getCueSheet(@Nonnull Path cueFile) {
if (cueSheet != null) {
if (cueSheet.getMessages().stream().filter(m -> m.toString().toLowerCase().contains("warning"))
.map(m -> {
LOG.warn("Cue sheet parsing line {} : {}", m.getLineNumber(), m.getMessage());
LOG.warn("Parsing {} at line {} : {}", cueFile, m.getLineNumber(), m.getMessage());
return m;
}).findFirst().isPresent()) {
cueSheet = null;
Expand Down

0 comments on commit 7cacdcf

Please sign in to comment.