[skip ci] Use LogInfo instead of LogError when logging parsed matches

This commit is contained in:
jvyden 2022-05-01 18:43:56 -04:00
commit 9654b12989
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

View file

@ -68,7 +68,7 @@ public class MatchController : ControllerBase
return this.BadRequest();
}
Logger.LogError($"Parsed match from {user.Username} (type: {matchData.GetType()})", LogArea.Match);
Logger.LogInfo($"Parsed match from {user.Username} (type: {matchData.GetType()})", LogArea.Match);
#endregion