Skip to content

Commit

Permalink
chore(starknet_integration_tests): inherit sequencer node's stdout (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alonh5 authored Dec 3, 2024
1 parent 8d81548 commit b409621
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async fn spawn_node_child_task(node_config_path: PathBuf) -> Child {
.arg("--config_file")
.arg(node_config_path.to_str().unwrap())
.stderr(Stdio::inherit())
.stdout(Stdio::null())
.stdout(Stdio::inherit())
.kill_on_drop(true) // Required for stopping the node when the handle is dropped.
.spawn()
.expect("Failed to spawn the sequencer node.")
Expand Down

0 comments on commit b409621

Please sign in to comment.