通常使用ipython的%logstart日志功能时,仅开启输入的记录。
例如在ipython中开启%logstart后,记录的日志文件内容如下:
#!/usr/bin/env python
# 2015-08-06.py
# IPython automatic logging file
# 12:02
# =================================
print "test"
如果想不仅记录print "test"这条指令,同时还能记录输出test怎么办呢。
这里可以使用-o选项,即在ipython中输入%logstart -o,则记录的日志内容如下:
#!/usr/bin/env python
# 2015-08-06.py
# IPython automatic logging file
# 12:02
# =================================
print "test"
#out# 0 test
多了一条#out#标记的输出记录。