mirror of
https://github.com/Radarr/Radarr
synced 2025-02-23 06:41:20 +00:00
Lower log level for missing translation/culture resource (#8956)
Fixes #8150
This commit is contained in:
parent
67e6e129ff
commit
89820c1ff7
2 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@ public void should_get_string_in_default_language_dictionary_if_no_lang_country_
|
|||
|
||||
localizedString.Should().Be("Langue de l'IU");
|
||||
|
||||
ExceptionVerification.ExpectedErrors(1);
|
||||
ExceptionVerification.ExpectedErrors(0);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
@ -46,7 +46,7 @@ public void should_get_string_in_default_dictionary_if_no_lang_exists_and_string
|
|||
|
||||
localizedString.Should().Be("UI Language");
|
||||
|
||||
ExceptionVerification.ExpectedErrors(1);
|
||||
ExceptionVerification.ExpectedErrors(0);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
|
|
@ -148,7 +148,7 @@ private async Task CopyInto(IDictionary<string, string> dictionary, string resou
|
|||
{
|
||||
if (!File.Exists(resourcePath))
|
||||
{
|
||||
_logger.Error("Missing translation/culture resource: {0}", resourcePath);
|
||||
_logger.Trace("Missing translation/culture resource: {0}", resourcePath);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue