Skip to content

Commit 6e88293

Browse files
committed
Revert "remove duplicated LA message (#1523)"
This reverts commit 105d296.
1 parent 445fdd9 commit 6e88293

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ansys/dpf/core/server_types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def _wait_and_check_server_connection(
126126
def read_stderr():
127127
with io.TextIOWrapper(process.stderr, encoding="utf-8") as log_err:
128128
for line in log_err:
129-
LOG.debug(line)
129+
LOG.error(line)
130130
current_errors.append(line)
131131

132132
stderr = read_stderr
@@ -140,6 +140,7 @@ def read_stdout():
140140
lines.append(line)
141141

142142
stdout = read_stdout
143+
143144
# must be in the background since the process reader is blocking
144145
Thread(target=stdout, daemon=True).start()
145146
Thread(target=stderr, daemon=True).start()

0 commit comments

Comments
 (0)