Skip to content

Commit

Permalink
add GRPC_VERBOSITY="ERROR" env var in __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmith023 committed Jul 24, 2024
1 parent 33e35ba commit 9e71ba1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion weaviate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Weaviate Python Client Library used to interact with a Weaviate instance.
"""

import os
import sys
from importlib.metadata import version, PackageNotFoundError
from typing import Any
Expand Down Expand Up @@ -49,6 +49,8 @@

from .warnings import _Warnings

os.environ["GRPC_VERBOSITY"] = "ERROR" # https://github.com/danielmiessler/fabric/discussions/754

__all__ = [
"BatchClient",
"ClientBatchingContextManager",
Expand Down

0 comments on commit 9e71ba1

Please sign in to comment.