Reputation: 16671
I run ipython on Ununtu 10.4 and log session by using %logstart.
I would like to define a path to a log file where the session would be logged. At the moment I have ipython_log.py in my home dorectory
Thanks
Upvotes: 1
Views: 328
Reputation: 4359
The first parameter to %logstart
should be the path to the logfile. For example:
%logstart ~/mylog.log
Try ?%logstart
to read about the available options.
Upvotes: 2