logging.py
上传用户:gyjinxi
上传日期:2007-01-04
资源大小:159k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

Python

  1. from bobomailrc import *
  2. from time import strftime, time, localtime
  3. logfile = open(log_filename, "a")
  4. def log(s):
  5. ts = strftime("%T %D", localtime(time()))
  6. logfile.write("[%s] %sn" % (ts, s))