From de6a7223ba48bf14ff54676114c2e0d7b29e4fab Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 25 Mar 2026 09:54:28 -0400 Subject: [PATCH] Suppress verbose gRPC C-core logging in nvidia services Set GRPC_VERBOSITY=ERROR by default so users do not see noisy fork handler and abseil warnings from the gRPC C library. Users can still override by setting GRPC_VERBOSITY themselves. --- src/pipecat/services/nvidia/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/pipecat/services/nvidia/__init__.py b/src/pipecat/services/nvidia/__init__.py index e69de29bb..c6bfb4652 100644 --- a/src/pipecat/services/nvidia/__init__.py +++ b/src/pipecat/services/nvidia/__init__.py @@ -0,0 +1,12 @@ +# +# Copyright (c) 2024-2026, Daily +# +# SPDX-License-Identifier: BSD 2-Clause License +# + +import os + +# Suppress verbose gRPC C-core logging (fork handlers, abseil warnings) unless +# the user has explicitly configured it. +if "GRPC_VERBOSITY" not in os.environ: + os.environ["GRPC_VERBOSITY"] = "ERROR"