在写入MongoDB时,我在python中获得了一个pymongo OperationsFailure。除了回溯之外,有没有办法打印出细节或代码属性?
到目前为止,我正在使用:
try:
connection.test.foo.find_one()
except pymongo.errors.OperationFailure:
print "caught"
答案 0 :(得分:2)
使用:
try:
connection.test.foo.find_one()
except pymongo.errors.OperationFailure as e:
print e.code
print e.details