Initialize logging in case it was requested at the command line.
(self)
| 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 | """ |