Remove logging reason to protect privacy.

This commit is contained in:
Patrick Fic
2024-11-22 10:34:08 -08:00
parent 4d4ab644d5
commit b89e587f5d

View File

@@ -106,7 +106,7 @@ namespace RomeOnlinePartner.Utils
logger.Error("Too many attempts logging in.");
return (false, Properties.Resources.Error_Login_Attempts);
default:
logger.Error(Ex, "Unknown error occured while logging in. {0}", Ex.Reason);
logger.Error(Ex, "Unknown error occured while logging in.");
return (false, Properties.Resources.Error_Login_Unknown);
}
}