Skip to content

Commit

Permalink
bit more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone committed Dec 8, 2024
1 parent d3c65f8 commit fe0add9
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,8 @@ def _log_provider_output(self, output_queue) -> None:
err = ChildProcessError(output)
self._exception = err
output = output + "\n"
self.logger.info(output)
# sys.stdout.write(output)
# sys.stdout.flush()
sys.stdout.write(output)
sys.stdout.flush()
break

output = clean_message(output)
Expand All @@ -301,10 +300,7 @@ def _log_provider_output(self, output_queue) -> None:
elif output.startswith("INFO:"):
output = output.replace("INFO:", "PROVIDER INFO:")

# output = output + "\n"
# sys.stdout.write(output + "\n")
self.logger.info(output)
# sys.stdout.flush()
except queue.Empty:
continue

Expand Down

0 comments on commit fe0add9

Please sign in to comment.