Suppress debug message when merging large files

This commit is contained in:
James R. Barlow
2018-03-09 11:10:45 -08:00
parent f1f0033875
commit d631c80024
+2 -2
View File
@@ -178,7 +178,7 @@ def merge(input_files, output_file, min_version=None, log=None, max_files=None):
n = min(step_size, len(workqueue))
job = workqueue[0:n]
del workqueue[0:n]
print('merging ' + repr(job))
log.debug('merging ' + repr(job))
# Merge them into 1 file, which will contain n^depth pages
merge_file = os.path.join(
@@ -188,7 +188,7 @@ def merge(input_files, output_file, min_version=None, log=None, max_files=None):
# On the next
next_workqueue.append(merge_file)
print('next_workqueue ' + repr(next_workqueue))
log.debug('next_workqueue ' + repr(next_workqueue))
# If we're out of things to do in this queue, move on to the next
# queue. On the counter-th pass of the workqueue we can chew through