🥅 error handling in locale
This commit is contained in:
parent
3132bc2637
commit
db39f7d8b7
1 changed files with 2 additions and 2 deletions
|
@ -135,9 +135,9 @@ export default async () => {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.then(async () => {
|
.then(async () => {
|
||||||
logger?.verbose(`i18next initialized`);
|
logger.debug(`i18next initialized`);
|
||||||
})
|
})
|
||||||
.catch(async (error) => {
|
.catch(async (error) => {
|
||||||
logger?.error(`i18next failed to initialize: ${error}`);
|
logger.error(`i18next failed to initialize: ${error}`);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue