Skip to content

Commit

Permalink
chore: add missing log-level flags to node launchers (#156)
Browse files Browse the repository at this point in the history
I would guess there's probably more missing but I needed these so
figured I'd upstream the changes.
  • Loading branch information
samlaf authored Feb 14, 2025
1 parent 0d490fd commit 1fbe3ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/cl/hildr/hildr_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ def get_beacon_config(

cmd = [
"--devnet",
"--log.level=" + log_level,
"--jwt-file=" + ethereum_package_constants.JWT_MOUNT_PATH_ON_CONTAINER,
"--l1-beacon-url={0}".format(l1_config_env_vars["CL_RPC_URL"]),
"--l1-rpc-url={0}".format(l1_config_env_vars["L1_RPC_URL"]),
Expand Down
1 change: 1 addition & 0 deletions src/cl/op-node/op_node_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ def get_beacon_config(

cmd = [
"op-node",
"--log.level=" + log_level,
"--l2={0}".format(EXECUTION_ENGINE_ENDPOINT),
"--l2.jwt-secret=" + ethereum_package_constants.JWT_MOUNT_PATH_ON_CONTAINER,
"--verifier.l1-confs=1",
Expand Down
1 change: 1 addition & 0 deletions test/el_cl_launcher_test.star
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def test_launch_with_defaults(plan):
cl_service_config.cmd,
[
"op-node",
"--log.level=INFO",
"--l2=http://{0}:{1}".format(
el_sevice.ip_address, el_sevice.ports["engine-rpc"].number
),
Expand Down

0 comments on commit 1fbe3ea

Please sign in to comment.