Change log level from warning to debug for missing keys

This commit is contained in:
Thorsten Sommer 2025-04-21 12:12:39 +02:00
parent 9039a3905a
commit 573abd4de4
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -23,7 +23,7 @@ public static class ILangExtensions
return text;
}
LOGGER.LogWarning($"Missing translation key '{key}' for content '{fallbackEN}'.");
LOGGER.LogDebug($"Missing translation key '{key}' for content '{fallbackEN}'.");
return fallbackEN;
}
}