Add debug message when calculating MD5 checksum

pull/2262/head
grossmj 10 months ago
parent 658bfb7624
commit af83adfdf6

@ -167,6 +167,7 @@ def md5sum(path, stopped_event=None):
try:
m = hashlib.md5()
log.debug("Calculating MD5 sum of `{}`".format(path))
with open(path, 'rb') as f:
while True:
if stopped_event is not None and stopped_event.is_set():

Loading…
Cancel
Save