获得多处理错误

时间:2012-11-15 23:26:53

标签: python module

所以我有这个;

from multiprocessing import Process

def run():
    4/0
    sys.exit()

def go(self):
    p = Process(target=run, args=())
    p.start()
    p.join()

如何从进程中获取错误并将它们存储在文件中?

2 个答案:

答案 0 :(得分:1)

您可以使用日志模块:import logging并让每个进程直接在日志文件中记录错误/日志。

logger = logging.getLogger('spam_application')
logger.warning("Something bad happened")

在代码中执行以下操作。注意 - 这是一个旋转记录器,你也可以使用其他记录器。[http://docs.python.org/2/library/logging.html]

from multiprocessing import Process
import logging
from logging.handlers import RotatingFileHandler 

r_logger = logging.getLogger('parsexmlfiles')

def set_logger()
    FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
    parser_logger = logging.getLogger('A_A_logfile')

    if isdaemon is True:
        # Log into a Log File.
        rotatingFH = RotatingFileHandler("/tmp/A_Alogfile.log", mode='a', 
                                     maxBytes=7340032, backupCount=4,
                                     encoding=None, delay=False)
        rotatingFH.setFormatter(logging.Formatter(
                                fmt="%(asctime)s : %(levelname)s : %(message)s", 
                                datefmt=None))
        parser_logger.addHandler(rotatingFH)
        parser_logger.setLevel(logging.DEBUG)

def run():
    4/0
    r_logger.info("Info Message")
    sys.exit()

def go(self):
    set_logger()
    p = Process(target=run, args=())
    p.start()
    p.join()

答案 1 :(得分:0)

将函数包装在try / except中,将catch捕获异常。使用python日志记录模块记录stacktrace,也可以记录locals()以及上下文。

您也可以跳过日志记录模块,只需使用'print'将异常处理消息打印到控制台。