Skip to content

Commit f6098a1

Browse files
authored
fix: logging bug (#462)
1 parent 313a586 commit f6098a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/package_io/input_parser.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def parse_network_params(input_args):
420420
def get_client_log_level_or_default(
421421
participant_log_level, global_log_level, client_log_levels
422422
):
423-
log_level = participant_log_level
423+
log_level = client_log_levels.get(participant_log_level, "")
424424
if log_level == "":
425425
log_level = client_log_levels.get(global_log_level, "")
426426
if log_level == "":

0 commit comments

Comments
 (0)