(self)
| 76 | self.loglevel = LOG_LEVELS[self.loglevel.upper()] |
| 77 | |
| 78 | def run(self) -> None: |
| 79 | if not self.quiet: |
| 80 | print(str(self.colored.cyan( |
| 81 | f'celery beat v{VERSION_BANNER} is starting.'))) |
| 82 | self.init_loader() |
| 83 | self.set_process_title() |
| 84 | self.start_scheduler() |
| 85 | |
| 86 | def setup_logging(self, colorize: bool | None = None) -> None: |
| 87 | if colorize is None and self.no_color is not None: |
nothing calls this directly
no test coverage detected