ci: reduce logger severity of credentials error

This commit is contained in:
alexiscatnip
2022-08-06 02:43:06 +08:00
committed by alexiscatnip
parent cbecb25503
commit 4bd557203c
+2 -2
View File
@@ -173,7 +173,7 @@ namespace Raindrop.UI.Login
if (!isValidUser)
{
credParserErrorString.Value = "bad username. Allowable examples: Kitty Graves , FlyingFox Resident , FlyingFox ";
Debug.LogError(" username error; invalid username input : " + Username);
Debug.LogWarning(" username error; invalid username input : " + Username);
StartCoroutine(EnableButtonCoroutine(1500));
return;
}
@@ -182,7 +182,7 @@ namespace Raindrop.UI.Login
if (Password.Length <= 0)
{
credParserErrorString.Value = "bad password";
Debug.LogError(" password error!");
Debug.LogWarning(" password error!");
StartCoroutine(EnableButtonCoroutine(1500));
return;
}