Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/89820c1ff743ee3789467a40758b9acb1c90f2ea?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Lower log level for missing translation/culture resource ()

Fixes 
pull/9370/head
bakerboy448 1 year ago committed by GitHub
parent 67e6e129ff
commit 89820c1ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ namespace NzbDrone.Core.Test.Localization
localizedString.Should().Be("Langue de l'IU");
ExceptionVerification.ExpectedErrors(1);
ExceptionVerification.ExpectedErrors(0);
}
[Test]
@ -46,7 +46,7 @@ namespace NzbDrone.Core.Test.Localization
localizedString.Should().Be("UI Language");
ExceptionVerification.ExpectedErrors(1);
ExceptionVerification.ExpectedErrors(0);
}
[Test]

@ -148,7 +148,7 @@ namespace NzbDrone.Core.Localization
{
if (!File.Exists(resourcePath))
{
_logger.Error("Missing translation/culture resource: {0}", resourcePath);
_logger.Trace("Missing translation/culture resource: {0}", resourcePath);
return;
}

Loading…
Cancel
Save