Skip to content

Commit a27c6a9

Browse files
authored
add logs at the end of unpacking (#4380)
We are currently logging progression when unpacking, but we're missing the last log. This can be useful to monitor what's going on in CF.
1 parent 6ed8085 commit a27c6a9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/clusterfuzz/_internal/system/archive.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,8 @@ def extract_all(self,
181181
if archive_file_unpack_count % 1000 == 0:
182182
logs.info('Unpacked %d/%d.' % (archive_file_unpack_count,
183183
archive_file_total_count))
184+
logs.info('Unpacked %d/%d. Done.' % (archive_file_unpack_count,
185+
archive_file_total_count))
184186

185187
return not error_occurred
186188

0 commit comments

Comments
 (0)