-1

我目前使用以下代码:

from google.appengine.api.urlfetch import Error
try:
    # some code here
except Error, message:
    logging.error('exception - %s' % message)

但它只会捕获 urlfetch 错误。如果我将其替换为:

try:
    # some code here
except:
    logging.error('exception')

然后它捕获所有错误。但是在这种情况下我怎样才能得到错误信息呢?

4

1 回答 1

1

捕获通用 Python 异常:

try:
    i = 6/0
except Exception as e:
    print( e )
于 2013-01-07T09:13:25.500 回答