From 1f8ac2cff7946de57d22790a3e390f4ac5ac623e Mon Sep 17 00:00:00 2001 From: Seonkyu_Kim Date: Tue, 18 Mar 2025 17:54:19 +0900 Subject: [PATCH] =?UTF-8?q?[=E2=99=BB=EF=B8=8F]=20=EB=A1=9C=EA=B7=B8=20?= =?UTF-8?q?=EC=A2=85=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Program/V1/Controllers/UserController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 {