Commit f6098a15 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: logging bug (#462)

parent 313a5869
...@@ -420,7 +420,7 @@ def parse_network_params(input_args): ...@@ -420,7 +420,7 @@ def parse_network_params(input_args):
def get_client_log_level_or_default( def get_client_log_level_or_default(
participant_log_level, global_log_level, client_log_levels 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 == "": if log_level == "":
log_level = client_log_levels.get(global_log_level, "") log_level = client_log_levels.get(global_log_level, "")
if log_level == "": if log_level == "":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment