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; } }