|
@@ -138,9 +138,12 @@ def log_outputs(processes, exclude_stdouts, output_log_level, borg_local_path):
|
|
if not output_buffer:
|
|
if not output_buffer:
|
|
continue
|
|
continue
|
|
|
|
|
|
- remaining_output = output_buffer.read().rstrip().decode()
|
|
|
|
|
|
+ while True:
|
|
|
|
+ remaining_output = output_buffer.readline().rstrip().decode()
|
|
|
|
+
|
|
|
|
+ if not remaining_output: # pragma: no cover
|
|
|
|
+ break
|
|
|
|
|
|
- if remaining_output: # pragma: no cover
|
|
|
|
logger.log(output_log_level, remaining_output)
|
|
logger.log(output_log_level, remaining_output)
|
|
|
|
|
|
|
|
|