在我的一个观点中,我处理了一个一般的 python 异常。此异常不会使站点崩溃,也不会导致 500。
我想用 django 记录这个异常,以便我可以检查它。什么是 pythonic 和 djangonic [??] 为什么要这样做?
def Set( request ):
if request.POST:
try:
#something nearly impossible
except Exception as exc:
#where do I log this?
pass
return HttpResponse(simplejson.dumps({'ya':'hoo!'}), mimetype='application/json')