我正在运行 python 脚本,该脚本在 Windows 7 上的 cygwin 下使用日志记录模块。该date
命令报告正确的时间:
$ date
Tue, Aug 14, 2012 2:47:49 PM
但是,python 脚本要休息五个小时:
2012-08-14 19:39:06,438: Done!
当我为脚本配置日志记录时,我没有做任何花哨的事情:
logging.basicConfig(format='%(asctime)-15s: %(message)s', level=logging.DEBUG)
有人可以告诉我发生了什么以及如何解决吗?