fix: pass through log level arg for node

This commit is contained in:
Cyrix126 2024-10-06 11:27:09 +02:00
parent 5bf9dca79e
commit 9a2bbb8b64

View file

@ -104,6 +104,8 @@ impl Helper {
args.push(state.out_peers.to_string());
args.push("--in-peers".to_string());
args.push(state.in_peers.to_string());
args.push("--log-level".to_string());
args.push(state.log_level.to_string());
args.push("--sync-pruned-blocks".to_string());
if state.dns_blocklist {
args.push("--enable-dns-blocklist".to_string());