check scroll through the log
(self, record)
| 282 | BaseRotatingHandler.__init__(self, filename, "a", encoding, delay) |
| 283 | |
| 284 | def shouldRollover(self, record): |
| 285 | """ |
| 286 | check scroll through the log |
| 287 | """ |
| 288 | if self.current_filename != self._compute_fn(): |
| 289 | return True |
| 290 | return False |
| 291 | |
| 292 | def doRollover(self): |
| 293 | """ |