public JobRunStatus GetJobRunStatus(Guid id) { Logger.Info($"Getting status of task with id {id}"); var status = _jobRunner.FindStatusById(id); Logger.Debug($"Status for task {id} is {status}"); return(status); }