From a7c7c724679b2c19683925d78c33b63e79d2aff3 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Fri, 28 Nov 2025 12:43:44 +0000 Subject: [PATCH] docs: fix logging environment variable separator in example (#4254) Correct the separator to comma in LLAMA_STACK_LOGGING example. --- docs/docs/distributions/starting_llama_stack_server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/distributions/starting_llama_stack_server.mdx b/docs/docs/distributions/starting_llama_stack_server.mdx index 20bcfa1e4..ed1964444 100644 --- a/docs/docs/distributions/starting_llama_stack_server.mdx +++ b/docs/docs/distributions/starting_llama_stack_server.mdx @@ -27,7 +27,7 @@ If you have built a container image and want to deploy it in a Kubernetes cluste Control log output via environment variables before starting the server. -- `LLAMA_STACK_LOGGING` sets per-component levels, e.g. `LLAMA_STACK_LOGGING=server=debug;core=info`. +- `LLAMA_STACK_LOGGING` sets per-component levels, e.g. `LLAMA_STACK_LOGGING=server=debug,core=info`. - Supported categories: `all`, `core`, `server`, `router`, `inference`, `agents`, `safety`, `eval`, `tools`, `client`. - Levels: `debug`, `info`, `warning`, `error`, `critical` (default is `info`). Use `all=` to apply globally. - `LLAMA_STACK_LOG_FILE=/path/to/log` mirrors logs to a file while still printing to stdout.