Add error logging when translation is missing from core

This commit is contained in:
Claus Vium 2019-02-08 10:26:29 +01:00 committed by Bond-009
parent 49923e50db
commit ce03662fa7

View file

@ -470,6 +470,10 @@ namespace Emby.Server.Implementations.Localization
dictionary[key] = dict[key];
}
}
else
{
_logger.LogError("Missing translation/culture resource: {ResourcePath}", resourcePath);
}
}
}