Skip to content

Commit

Permalink
info->debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cwlls committed Apr 28, 2024
1 parent d6f893a commit a28f2b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filetypes/video_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def checksum(self, block_size: int = 8192) -> str:
file = ffmpeg.output(file, "-", f="hash")
chksum = ffmpeg.run(file, capture_stdout=True, capture_stderr=True)
chksum = chksum[0].decode().lstrip("SHA256=").rstrip()
LOGGER.info(f"CHECKSUM: {chksum}")
LOGGER.debug(f"CHECKSUM: {chksum}")
except ffmpeg.Error as e:
LOGGER.error(f"{e.stderr}")
sys.exit(1)
Expand Down

0 comments on commit a28f2b0

Please sign in to comment.