Skip to content

Commit 105d296

Browse files
cbellot000Camille Bellot
andauthored
remove duplicated LA message (#1523)
Co-authored-by: Camille Bellot <[email protected]>
1 parent 52a7632 commit 105d296

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/ansys/dpf/core/server_types.py

Lines changed: 1 addition & 2 deletions
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.error(line)
129+
LOG.debug(line)
130130
current_errors.append(line)
131131

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

142142
stdout = read_stdout
143-
144143
# must be in the background since the process reader is blocking
145144
Thread(target=stdout, daemon=True).start()
146145
Thread(target=stderr, daemon=True).start()

0 commit comments

Comments
 (0)