Made cache misses an informational alert and updated message to be more helpful

This commit is contained in:
barelyprofessional
2024-08-18 00:03:50 +08:00
parent f53e12552b
commit 21b14f134e

View File

@@ -47,7 +47,7 @@ public static class Helpers
return new SettingValue(null, setting, false);
}
logger.Debug($"Cache Miss! Returning '{setting.Value}' as {typeof(SettingValue)}");
logger.Info($"Cache Miss! Returning '{setting.Value}' for {key}");
return new SettingValue(setting.Value, setting, false);
}