From 17a321dcf7f22d20b81480f53bcc7404387e9da3 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Wed, 6 Mar 2024 23:59:34 -0800 Subject: [PATCH] change success message from error to info --- CopyTexture/CopyTextureGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CopyTexture/CopyTextureGame.cs b/CopyTexture/CopyTextureGame.cs index 69ed706..d7da91e 100644 --- a/CopyTexture/CopyTextureGame.cs +++ b/CopyTexture/CopyTextureGame.cs @@ -137,7 +137,7 @@ namespace MoonWorks.Test if (System.MemoryExtensions.SequenceEqual(originalSpan, copiedSpan)) { - Logger.LogError("SUCCESS! Original texture bytes and the downloaded bytes match!"); + Logger.LogInfo("SUCCESS! Original texture bytes and the downloaded bytes match!"); } else