Skip to content

Commit 2d7b970

Browse files
committed
docs(cli): clarify gRPC help text for set-debug
* Update `--grpc-verbosity` help to valid values: DEBUG|INFO|ERROR|NONE * Expand `--grpc-trace` help with tracer examples, wildcards, and `list_tracers` usage
1 parent 346c8c1 commit 2d7b970

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

deepeval/cli/main.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,12 +328,15 @@ def set_debug(
328328
grpc_verbosity: Optional[str] = typer.Option(
329329
None,
330330
"--grpc-verbosity",
331-
help="Set GRPC_VERBOSITY (DEBUG|INFO|WARNING|ERROR|CRITICAL|NOTSET).",
331+
help="Set GRPC_VERBOSITY (DEBUG|INFO|ERROR|NONE).",
332332
),
333333
grpc_trace: Optional[str] = typer.Option(
334334
None,
335335
"--grpc-trace",
336-
help='Set GRPC_TRACE (e.g., "all" or comma-separated tags).',
336+
help=(
337+
"Set GRPC_TRACE to comma-separated tracer names or glob patterns "
338+
"(e.g. 'tcp,http,secure_endpoint', '*' for all, 'list_tracers' to print available)."
339+
),
337340
),
338341
# Confident tracing
339342
trace_verbose: Optional[bool] = typer.Option(

0 commit comments

Comments
 (0)