Add error logging when translation is missing from core

pull/852/head
Claus Vium 5 years ago committed by Bond-009
parent 49923e50db
commit ce03662fa7

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

Loading…
Cancel
Save