Пример #1
0
        public async Task <IActionResult> GetExceptionLog(string logId)
        {
            ExceptionLog log = await _logBll.GetExceptionLogAsync(logId);

            return(new JsonResult(new { success = true, data = log }));
        }