trying to get the couchbase logs working at debug level per Logging — Couchbase Python Client Library 2.1.1 documentation
but displite loading the couchbase python version 4.0.0 and importing it into my main when I call
couchbase.enable_logging()
I get this exception:
Exception has occurred: AttributeError
module 'couchbase' has no attribute 'enable_logging'
File "C:\Users\larry.bilodeau\source\repos\university_incentives\Incentives_kafka_consumer\microservice\main.py", line 51, in <module>
couchbase.enable_logging()
I have a “import couchbase” at the top of my main.py; is ther some other form or library I specifically have to load?
I also have my environment variable LCB_LOGLEVEL=5 but am not seeing any couchbase log entries.