Details
Description
took a few hours to find why logging in my python app stopped working, and it's because I started using the couchbase python SDK which strangely disables logging...
logging.disable(logging.ERROR)
here...
https://github.com/couchbase/couchbase-python-client/blob/master/couchbase/client.py#L33
the temporary workaround in my app was to call...
logging.disable(logging.NOTSET)
but, that's just a hack workaround against a socially awkward (read: rude) implementation.
logging.disable(logging.ERROR)
here...
https://github.com/couchbase/couchbase-python-client/blob/master/couchbase/client.py#L33
the temporary workaround in my app was to call...
logging.disable(logging.NOTSET)
but, that's just a hack workaround against a socially awkward (read: rude) implementation.
Activity
- All
- Comments
- Work Log
- History
- Activity
- Gerrit Reviews
Benjamin Young
made changes -
| Field | Original Value | New Value |
|---|---|---|
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Assignee | Matt Ingenthron [ ingenthr ] | Benjamin Young [ BigBlueHat ] |
| Fix Version/s | 0.7 [ 10213 ] | |
| Resolution | Fixed [ 1 ] |