Skip to content

Commit

Permalink
Merge logger codebase with morituri-yamllogger's one
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeLametta committed Aug 25, 2016
1 parent 84c2d24 commit 8c83c4a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions morituri/result/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ def logRip(self, ripResult, epoch):
lines.append(" Defeat audio cache: %s" % defeat)
lines.append(" Read offset correction: %+d" % ripResult.offset)
# Currently unsupported by the official cdparanoia package
over = "Unknown"
if ripResult.overread is True:
over = "Yes"
elif ripResult.overread is False:
over = "No"
over = "No"
try:
if ripResult.overread is True:
over = "Yes"
except NameError:
pass
lines.append(" Overread into lead-out: %s" % over)
# Next one fully works only using the patched cdparanoia package
# lines.append("Fill up missing offset samples with silence: Yes")
Expand Down

0 comments on commit 8c83c4a

Please sign in to comment.