Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/ansys/dpf/core/server_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def _wait_and_check_server_connection(
def read_stderr():
with io.TextIOWrapper(process.stderr, encoding="utf-8") as log_err:
for line in log_err:
LOG.error(line)
LOG.debug(line)
current_errors.append(line)

stderr = read_stderr
Expand All @@ -140,7 +140,6 @@ def read_stdout():
lines.append(line)

stdout = read_stdout

# must be in the background since the process reader is blocking
Thread(target=stdout, daemon=True).start()
Thread(target=stderr, daemon=True).start()
Expand Down