python异常消息捕获

时间:2011-01-14 11:33:50

标签: python exception logging except

import ftplib
import urllib2
import os
import logging
logger = logging.getLogger('ftpuploader')
hdlr = logging.FileHandler('ftplog.log')
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
hdlr.setFormatter(formatter)
logger.addHandler(hdlr)
logger.setLevel(logging.INFO)
FTPADDR = "some ftp address"

def upload_to_ftp(con, filepath):
    try:
        f = open(filepath,'rb')                # file to send
        con.storbinary('STOR '+ filepath, f)         # Send the file
        f.close()                                # Close file and FTP
        logger.info('File successfully uploaded to '+ FTPADDR)
    except, e:
        logger.error('Failed to upload to ftp: '+ str(e))

这似乎不起作用,我得到语法错误,这样做的正确方法是将所有类型的异常记录到文件中

11 个答案:

答案 0 :(得分:505)

您必须定义要捕获的异常类型。因此,请为except Exception, e:而不是except, e:写一般异常(无论如何都要记录)。

其他可能性是以这种方式编写整个try / except代码:

try:
    with open(filepath,'rb') as f:
        con.storbinary('STOR '+ filepath, f)
    logger.info('File successfully uploaded to '+ FTPADDR)
except Exception, e:
    logger.error('Failed to upload to ftp: '+ str(e))
Python 3.x中的

和Python 2.x的现代版本使用except Exception as e而不是except Exception, e

try:
    with open(filepath,'rb') as f:
        con.storbinary('STOR '+ filepath, f)
    logger.info('File successfully uploaded to '+ FTPADDR)
except Exception as e:
    logger.error('Failed to upload to ftp: '+ str(e))

答案 1 :(得分:251)

python 3不再支持该语法。请改用以下语言。

try:
    do_something()
except BaseException as e:
    logger.error('Failed to do something: ' + str(e))

答案 2 :(得分:29)

将此更新为更简单的记录器(适用于python 2和3)。您不需要回溯模块。

import logging

logger = logging.Logger('catch_all')

def catchEverythingInLog():
    try:
        ... do something ...
    except Exception as e:
        logger.error(e, exc_info=True)
        ... exception handling ...

这是旧的方式(尽管仍然有效):

import sys, traceback

def catchEverything():
    try:
        ... some operation(s) ...
    except:
        exc_type, exc_value, exc_traceback = sys.exc_info()
        ... exception handling ...

exc_value是错误消息。

答案 3 :(得分:22)

在某些情况下,您可以使用 e.message e.messages ..但它并不适用于所有情况。无论如何,使用 str(e)

更安全
try:
  ...
except Exception as e:
  print(e.message)

答案 4 :(得分:16)

您可以使用logger.exception("msg")通过回溯来记录异常:

try:
    #your code
except Exception as e:
    logger.exception('Failed: ' + str(e))

答案 5 :(得分:7)

如果您需要错误类,错误消息和堆栈跟踪(或其中任何一个),请使用 sys.exec_info()

带有一些格式的最小工作代码,

import sys
import traceback

try:
    ans = 1/0
except BaseException as ex:
    # Get current system exception
    ex_type, ex_value, ex_traceback = sys.exc_info()

    # Extract unformatter stack traces as tuples
    trace_back = traceback.extract_tb(ex_traceback)

    # Format stacktrace
    stack_trace = list()

    for trace in trace_back:
        stack_trace.append("File : %s , Line : %d, Func.Name : %s, Message : %s" % (trace[0], trace[1], trace[2], trace[3]))

    print("Exception type : %s " % ex_type.__name__)
    print("Exception message : %s" %ex_value)
    print("Stack trace : %s" %stack_trace)

将提供以下输出,

Exception type : ZeroDivisionError
Exception message : division by zero
Stack trace : ['File : .\\test.py , Line : 5, Func.Name : <module>, Message : ans = 1/0']

<强> sys.exec_info()

这为您提供了有关最新异常的异常详细信息。它返回一个元组。以下是元组值(type, value, traceback)

traceback是traceback对象的一个​​实例。您可以使用提供的方法格式化跟踪。更多信息可以从traceback documentation

找到

答案 6 :(得分:7)

在python 3.6之后,您可以使用格式化的字符串文字。干净利落! (https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep498

try
 ...
except Exception as e:
    logger.error(f"Failed to upload to ftp: {e}")

答案 7 :(得分:5)

使用str(e)repr(e)表示异常,您将无法获得实际的堆栈跟踪,因此查找异常在哪里没有帮助。

在阅读了其他答案和日志记录包doc之后,以下两种方法可以很好地打印实际的堆栈跟踪信息,以便于调试:

logger.debug()与参数exc_info一起使用

try:
    # my code
except SomeError as e:
    logger.debug(e, exc_info=True)

使用logger.exception()

或者我们可以直接使用logger.exception()打印异常。

try:
    # my code
except SomeError as e:
    logger.exception(e)

答案 8 :(得分:4)

您可以尝试显式指定BaseException类型。但是,这只会捕获BaseException的衍生物。虽然这包括所有实现提供的异常,但也可能引发任意旧式类。

try:
  do_something()
except BaseException, e:
  logger.error('Failed to do something: ' + str(e))

答案 9 :(得分:2)

使用str(ex)打印execption

try:
   #your code
except ex:
   print(str(ex))

答案 10 :(得分:1)

对于未来的奋斗者 在python 3.8.2(可能还有之前的几个版本)中,语法为

except Attribute as e:
    print(e)