Issue
I have a bug in my program :(
The problem is that:
- My
.py
code is long, and takes ages to run - I don't know where the bug is
The good news is that I have a lot of print()
in my py
file, so I can potentially know where the bug lives.
The bad news is that my bug makes my computer crash, so there is no way for me to look at the output of the ipython
console and see what went wrong.
How can I have the output be written to disk while the program runs? So that I can still open the file after reboot to understand what happened before the crash?
This question is different from Redirect stdout to a file in Python?, because I need
- continuous writing to file
- something to use from within Spyder
Many thanks!
Solution
Very interesting question! Fortunately IPython has the right magic for you. It's called %logstart
(please follow the link for the full documentation).
To start using it and save the input and output of all your commands, just type in an IPython console
In[1]: %logstart -o
and that will record your session from that moment on into a file called ipython_log.py
placed in your current directory.
%logstart
is very flexible, so you can select a different file to save to, and also how you save your session (either pure Python or as IPython commands).
Answered By - Carlos Cordoba
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.