Skip to content Skip to sidebar Skip to footer

How To Show Pymongo.errors.OperationFailure Details?

I am getting a pymongo OperationsFailure in python when writing to MongoDB. Is there a way to print out the detail or code attribute in addition to the traceback? Also see: http://

Solution 1:

Works:

try:
    connection.test.foo.find_one()
except pymongo.errors.OperationFailure as e:
    print e.code
    print e.details

Post a Comment for "How To Show Pymongo.errors.OperationFailure Details?"