python stmp debug 输出

发布时间:2019-09-08 09:10:08编辑:auto阅读(1728)

     

    1. 需求如下:用python写个发送mail的程序 。开启debug 。现在想将这个debug写进一个文件中,
    2. 代码如下 : 
    3.         stdout_  = sys.stdout 
    4.         sys.stdout  = open("debug.txt","write"
    5.         try
    6.                 s = smtplib.SMTP() 
    7.                 s.set_debuglevel(1
    8.                 s.connect(mail_host) 
    9.                 s.login(mail_user,mail_pass) 
    10.                 s.sendmail(me,mailto_list,msg.as_string()) 
    11.                 s.close() 
    12.                 print "send_mail success" 
    13.                 return True 
    14.  
    15.         except  Exception,e: 
    16.                 print maildebug 
    17.                 print "send_mail false" 
    18.                 return False 
    19.         sys.stdout   = stdout_ 

     

    但是实际上,debug的输出 仍然是输出在屏幕上的。

    查看 smtplib 的源码,发现:

     

    1. from sys import stderr 
    2. if self.debuglevel > 0: 
    3.                 print>>stderr, 'connect:', (host, port) 

    包里直接   print>>stderr  使用这个语句,所以在外界无法使用 sys.stdout  = open("debug.txt","write"来重定向。

    那么方法应该如下:

     

    1. s = smtplib.SMTP() 
    2.               s.set_debuglevel(1
    3.               smtplib.stderr=open("debug.txt","write"
    4.               s.connect(mail_host) 
    5.               s.login(mail_user,mail_pass) 
    6.               s.sendmail(me,mailto_list,msg.as_string()) 
    7.               s.close() 

    这样子就会把stderr 存进debug.txt 文件中

关键字