qdrant / qdrant-client

Python client for Qdrant vector search engine
https://qdrant.tech
Apache License 2.0
735 stars 117 forks source link

HTTP logging is set as INFO? #242

Open andrenatal opened 1 year ago

andrenatal commented 1 year ago

It seems the http logging in the python library is set as INFO? Wouldn't be better if that's set to DEBUG so it doesn't conflict with actual INFO messages used by the application?

tamaravasey commented 1 year ago

Yes this would be helpful to drop down to DEBUG, especially when calling scroll() often due to the result pagination.

generall commented 1 year ago

You can disable it by specifying INFO,actix_web=WARN

ambrustorok commented 2 weeks ago

Is this still relevant @generall? os.environ["RUST_LOG"] = "INFO,actix_web=WARN" does not work for me, I still get the messages in the log.

joein commented 2 weeks ago

@andrenatal that comment is about passing envs to qdrant container Not about setting them in python

Could you also specify which exactly messages you’re referring to so we could help you?