From f93f82eba44825b70e7566cde33e2f2b989e2f4d Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 11 Aug 2025 09:29:55 -0700 Subject: [PATCH] chore(logging)!: use comma as a delimiter --- llama_stack/log.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llama_stack/log.py b/llama_stack/log.py index ab53e08c0..0a2d63ef6 100644 --- a/llama_stack/log.py +++ b/llama_stack/log.py @@ -99,7 +99,8 @@ def parse_environment_config(env_config: str) -> dict[str, int]: Dict[str, int]: A dictionary mapping categories to their log levels. """ category_levels = {} - for pair in env_config.split(";"): + delimiter = "," + for pair in env_config.split(delimiter): if not pair.strip(): continue