Change verbose log

This commit is contained in:
Nick 2022-07-05 23:12:31 -04:00
parent 0c420e61e7
commit a5bcd46d3f

View File

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