1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Lower i18n-helper#getMessage log level from error to warning

This commit is contained in:
Whymarrh Whitby 2018-10-16 16:36:11 -02:30
parent 07ab613d4c
commit bd35728041

View File

@ -13,7 +13,7 @@ const getMessage = (locale, key, substitutions) => {
return null
}
if (!locale[key]) {
log.error(`Translator - Unable to find value for key "${key}"`)
log.warn(`Translator - Unable to find value for key "${key}"`)
return null
}
const entry = locale[key]