Skip to content

Commit

Permalink
fix: logging bug (ethpandaops#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Jan 16, 2024
1 parent 313a586 commit f6098a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def parse_network_params(input_args):
def get_client_log_level_or_default(
participant_log_level, global_log_level, client_log_levels
):
log_level = participant_log_level
log_level = client_log_levels.get(participant_log_level, "")
if log_level == "":
log_level = client_log_levels.get(global_log_level, "")
if log_level == "":
Expand Down

0 comments on commit f6098a1

Please sign in to comment.