English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Internet/网络编程
>
WEB邮件程序
> 查看源码
logging.py
资源名称:
bobomail-0.3-1.tar.gz [点击查看]
上传用户:
gyjinxi
上传日期:
2007-01-04
资源大小:
159k
文件大小:
0k
源码类别:
WEB邮件程序
开发平台:
Python
logging.py:源码内容
from bobomailrc import *
from time import strftime, time, localtime
logfile = open(log_filename, "a")
def log(s):
ts = strftime("%T %D", localtime(time()))
logfile.write("[%s] %sn" % (ts, s))