gpt4 book ai didi

python - 如何在 Python 中同步日志记录和打印?

转载 作者:行者123 更新时间:2023-12-04 17:51:08 25 4
gpt4 key购买 nike

下面的代码

 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com