Ejemplo n.º 1
0
        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);
        }