Chore: remove i18n console log (#56691)

This commit is contained in:
Josh Hunt 2022-10-11 12:22:48 +01:00 committed by GitHub
parent 11c4ab8397
commit 6969354490
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,6 @@ const loadTranslations: BackendModule = {
type: 'backend', type: 'backend',
init() {}, init() {},
async read(language, namespace, callback) { async read(language, namespace, callback) {
console.log('using loadTranslations plugin', { language, namespace, callback });
const loader = messageLoaders[language]; const loader = messageLoaders[language];
if (!loader) { if (!loader) {
return callback(new Error('No message loader available for ' + language), null); return callback(new Error('No message loader available for ' + language), null);