作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的代码
logging.info('Collecting available features for location ' + source_feature['properties']['key'] + ' and date range [' + start_date + '..' + end_date + ']...')
feature_start_time = datetime.now()
target_directory = util.target_directory(source_feature['properties'])
if target_directory is None:
target_directory = util.target_directory_for_point(point)
try:
for layer in layers:
logging.info('Layer: \'' + layer + '\'')
print('Found dates: ', end='', flush=True)
criterion_date = end_date
while criterion_date is not None:
打印出这样的东西
Found dates: 20170630130831 Collecting available features for location 8404222738792 and date range [2016-04-16..2017-06-30]...
20170630130831 Layer: '1_NATURAL_COL0R'
2017-06-22 2017-05-13 2017-04-23 2017-04-03 2017-03-14 2017-02-22 2017-01-23 2016-11-24 2016-10-05 2016-08-06 2016-07-17 2016-06-27 2016-06-07
即打印输出与记录器输出交错。
如何同步?我不想在他们打电话的同时打印日志,并且不与打印的交错。
更新
日志初始化如下
import logging
logging.basicConfig(format='%(asctime)s %(message)s', datefmt='%Y%m%d%H%M%S', level=logging.INFO)
最佳答案
我遇到了同样的问题。默认情况下,StreamHandler
将所有数据记录到 sys.stderr
中。 print
将数据打印到 sys.stdout
。所以你的程序是同步的,但你的终端没有。尝试手动创建 StreamHandler
并将 stream=sys.stdout
传递给构造函数。之后你的输出应该被传递到 stdout
并且所有的都将同步。
关于python - 如何在 Python 中同步日志记录和打印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44844014/
我是一名优秀的程序员,十分优秀!