diff --git a/Program/V1/Controllers/UserController.cs b/Program/V1/Controllers/UserController.cs index e879295..3cf3f36 100644 --- a/Program/V1/Controllers/UserController.cs +++ b/Program/V1/Controllers/UserController.cs @@ -268,7 +268,7 @@ public class UserController : ControllerBase logUser.log = $"[{summary}] : 정상"; if (await _repositoryService.SaveData(logUser)) - _logger.LogError($"[{summary}] : 로그 저장 성공"); + _logger.LogInformation($"[{summary}] : 로그 저장 성공"); return Ok(APIResponse.Send("000", $"[{summary}], 정상", new { @@ -301,6 +301,7 @@ public class UserController : ControllerBase { if (string.IsNullOrEmpty(token)) return BadRequest(APIResponse.InvalidInputError()); if (!ModelState.IsValid) return BadRequest(APIResponse.InvalidInputError()); + string summary = String.Empty; try {