From 12770516a28eaacffc79cb9ac30f02126f407925 Mon Sep 17 00:00:00 2001 From: Dinesh Date: Wed, 11 Oct 2023 14:02:07 +0545 Subject: [PATCH] helper link --- .../CustomerOnlineV2/Controllers/AccountController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CustomerOnlineV2/CustomerOnlineV2/Controllers/AccountController.cs b/CustomerOnlineV2/CustomerOnlineV2/Controllers/AccountController.cs index 120f5ba..7843e59 100644 --- a/CustomerOnlineV2/CustomerOnlineV2/Controllers/AccountController.cs +++ b/CustomerOnlineV2/CustomerOnlineV2/Controllers/AccountController.cs @@ -163,7 +163,7 @@ namespace CustomerOnlineV2.Controllers _logger.LogDebug("ACCOUNTCONTROLLER | FORCECHANGEPASSWORD | REQUEST | " + JsonConvert.SerializeObject(model)); if (string.IsNullOrEmpty(logindetails.UserName)) { - _logger.LogError("ACCOUNTCONTROLLER | FORCECHANGEPASSWORD | INVALID logindetails.UserName"); + _logger.LogError("ACCOUNTCONTROLLER | RESETPASSWORD | INVALID logindetails.UserName"); RedirectToAction("Index", "Account"); } @@ -171,7 +171,7 @@ namespace CustomerOnlineV2.Controllers Log.Debug("Change password response: " + JsonConvert.SerializeObject(response)); if (response.ResponseCode == ResponseHelper.SUCCESS) { - Log.Debug("ACCOUNTCONTROLLER | CHANGEPASSWORD | REQUEST ARRIVED | " + logindetails.UserName); + Log.Debug("ACCOUNTCONTROLLER | RESETPASSWORD | REQUEST ARRIVED | " + logindetails.UserName); HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme); return RedirectToAction("Index", "Account"); }