(self, execution_service: ExecutionService, execution_logging_service)
| 409 | |
| 410 | class ExecutionLoggingController: |
| 411 | def __init__(self, execution_service: ExecutionService, execution_logging_service): |
| 412 | self._execution_logging_service = execution_logging_service |
| 413 | self._execution_service = execution_service |
| 414 | |
| 415 | def start(self): |
| 416 | execution_service = self._execution_service |
nothing calls this directly
no outgoing calls
no test coverage detected