We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 445fdd9 commit 6e88293Copy full SHA for 6e88293
src/ansys/dpf/core/server_types.py
@@ -126,7 +126,7 @@ def _wait_and_check_server_connection(
126
def read_stderr():
127
with io.TextIOWrapper(process.stderr, encoding="utf-8") as log_err:
128
for line in log_err:
129
- LOG.debug(line)
+ LOG.error(line)
130
current_errors.append(line)
131
132
stderr = read_stderr
@@ -140,6 +140,7 @@ def read_stdout():
140
lines.append(line)
141
142
stdout = read_stdout
143
+
144
# must be in the background since the process reader is blocking
145
Thread(target=stdout, daemon=True).start()
146
Thread(target=stderr, daemon=True).start()
0 commit comments