MCPcopy Create free account
hub / github.com/ipython/ipython / init_logstart

Method init_logstart

IPython/core/interactiveshell.py:807–815  ·  view source on GitHub ↗

Initialize logging in case it was requested at the command line.

(self)

Source from the content-addressed store, hash-verified

805 logmode='rotate')
806
807 def init_logstart(self):
808 """Initialize logging in case it was requested at the command line.
809 """
810 if self.logappend:
811 self.magic('logstart %s append' % self.logappend)
812 elif self.logfile:
813 self.magic('logstart %s' % self.logfile)
814 elif self.logstart:
815 self.magic('logstart')
816
817 def init_deprecation_warnings(self):
818 """

Callers 1

__init__Method · 0.95

Calls 1

magicMethod · 0.95

Tested by

no test coverage detected