Skip to content

Commit e38d087

Browse files
log subtensor-node
1 parent 676ac5d commit e38d087

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/e2e_tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ def wait_for_node_start(process, timestamp=None):
4848
# To prevent the buffer filling up
4949
def read_output():
5050
while True:
51-
if not process.stdout.readline():
51+
line = process.stdout.readline()
52+
if not line:
5253
break
54+
print(line)
5355

5456
reader_thread = threading.Thread(target=read_output, daemon=True)
5557
reader_thread.start()
@@ -179,8 +181,6 @@ def try_start_docker():
179181
"9944:9944",
180182
"-p",
181183
"9945:9945",
182-
"--env",
183-
"RUST_LOG=debug",
184184
LOCALNET_IMAGE_NAME,
185185
params,
186186
]

0 commit comments

Comments
 (0)