(self)
| 350 | self.update = now |
| 351 | |
| 352 | def report(self): |
| 353 | total = sum(self.time.values()) |
| 354 | if total == 0: |
| 355 | return |
| 356 | scripts = [f'{k}:{v}' for k, v in self.time.items() if v > 0] |
| 357 | log.debug(f'Script: op={self.op} total={total} scripts={scripts}') |
| 358 | |
| 359 | |
| 360 | class ScriptRunner: |
no test coverage detected