From a5bcd46d3feef6852bb9fcb17453ce931b4dd96b Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 5 Jul 2022 23:12:31 -0400 Subject: [PATCH] Change verbose log --- NewHorizons/Utility/ImageUtilities.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NewHorizons/Utility/ImageUtilities.cs b/NewHorizons/Utility/ImageUtilities.cs index ea4abafa..fbd1b3ac 100644 --- a/NewHorizons/Utility/ImageUtilities.cs +++ b/NewHorizons/Utility/ImageUtilities.cs @@ -48,7 +48,8 @@ namespace NewHorizons.Utility } catch (Exception ex) { - Logger.LogWarning($"Exception thrown while loading texture [{filename}]: {ex.Message}, {ex.StackTrace}"); + // Half the time when a texture doesn't load it doesn't need to exist so just log verbose + Logger.LogVerbose($"Exception thrown while loading texture [{filename}]: {ex.Message}, {ex.StackTrace}"); return null; } }