重新启动计算机后从Pycharm恢复打印

时间:2020-07-15 04:05:54

标签: python pycharm

在Pycharm中一整夜运行脚本时,我的计算机崩溃了(崩溃与我的脚本无关)。 Pycharm打印中是否保存了崩溃之前发生的任何历史记录,因此我不必再次运行脚本?如果是这样,我如何找回它们?

1 个答案:

答案 0 :(得分:2)

目前尚无法,但请添加此答案以供将来参考,以将终端输出自动保存为PyCharm中的日志。

  1. 导航栏 中单击Add Configurations或转到Menu > Run > Edt Configuration

Edit Configuration Option

  1. 打开Templates > Python >然后Logs标签。根据需要指定路径和选项。在IntelliJ IDEA's Logging documentation中了解更多信息。

enter image description here

但是最好的方法是使用Python强大的日志记录功能。下面是一个小示例,source。这样会将终端中输出的所有内容保存到文件中。

import logging
logging.basicConfig(filename='example.log', level=logging.INFO)
logging.debug('This message should go to the log file')
logging.info('So should this')
logging.warning('And this, too')