From db39f7d8b7070bb74a3f06bd9afc7140c877ffcb Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Sun, 17 Apr 2022 18:12:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=85=20error=20handling=20in=20locale?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locale/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locale/index.ts b/src/locale/index.ts index 4749232..a3eb2df 100644 --- a/src/locale/index.ts +++ b/src/locale/index.ts @@ -135,9 +135,9 @@ export default async () => { }, }) .then(async () => { - logger?.verbose(`i18next initialized`); + logger.debug(`i18next initialized`); }) .catch(async (error) => { - logger?.error(`i18next failed to initialize: ${error}`); + logger.error(`i18next failed to initialize: ${error}`); }); };