Show More
@@ -320,7 +320,8 b' class InteractiveShell(SingletonConfigurable):' | |||||
320 |
|
320 | |||
321 | logstart = CBool(False, config=True, help= |
|
321 | logstart = CBool(False, config=True, help= | |
322 | """ |
|
322 | """ | |
323 | Start logging to the default log file. |
|
323 | Start logging to the default log file in overwrite mode. | |
|
324 | Use `logappend` to specify a log file to **append** logs to. | |||
324 | """ |
|
325 | """ | |
325 | ) |
|
326 | ) | |
326 | logfile = Unicode('', config=True, help= |
|
327 | logfile = Unicode('', config=True, help= | |
@@ -331,6 +332,7 b' class InteractiveShell(SingletonConfigurable):' | |||||
331 | logappend = Unicode('', config=True, help= |
|
332 | logappend = Unicode('', config=True, help= | |
332 | """ |
|
333 | """ | |
333 | Start logging to the given file in append mode. |
|
334 | Start logging to the given file in append mode. | |
|
335 | Use `logfile` to specify a log file to **overwrite** logs to. | |||
334 | """ |
|
336 | """ | |
335 | ) |
|
337 | ) | |
336 | object_info_string_level = Enum((0,1,2), default_value=0, |
|
338 | object_info_string_level = Enum((0,1,2), default_value=0, |
General Comments 0
You need to be logged in to leave comments.
Login now