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 and bharath-123 committed Jan 18, 2024
1 parent 56121ae commit 6a5b4d9
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 @@ -421,7 +421,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 6a5b4d9

Please sign in to comment.