From 8e0a44744898c996ad0b1061bec87ac46c677990 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Tue, 24 Jun 2025 20:15:55 +0200 Subject: [PATCH] Fix LLAMA_STACK_LOG in README The readme calls to use `LLAMA_STACK_CLIENT_LOG` env var to enable debug logs, but that's not the value we are using in the code [1]. Update it to use the right env var name: `LLAMA_STACK_LOG`. [1]: https://github.com/meta-llama/llama-stack-client-python/blob/52c0b5d23e9ae67ceb09d755143d436f38c20547/src/llama_stack_client/_utils/_logs.py#L19 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f1200e4d..7bbd3c23 100644 --- a/README.md +++ b/README.md @@ -207,10 +207,10 @@ Note that requests that time out are [retried twice by default](#retries). We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module. -You can enable logging by setting the environment variable `LLAMA_STACK_CLIENT_LOG` to `debug`. +You can enable logging by setting the environment variable `LLAMA_STACK_LOG` to `debug`. ```shell -$ export LLAMA_STACK_CLIENT_LOG=debug +$ export LLAMA_STACK_LOG=debug ``` ### How to tell whether `None` means `null` or missing