aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/i18n/i18nLog.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/i18n/i18nLog.ts')
-rw-r--r--packages/main/src/i18n/i18nLog.ts41
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/main/src/i18n/i18nLog.ts b/packages/main/src/i18n/i18nLog.ts
new file mode 100644
index 0000000..94f6473
--- /dev/null
+++ b/packages/main/src/i18n/i18nLog.ts
@@ -0,0 +1,41 @@
1/*
2 * Copyright (C) 2022 Kristóf Marussy <kristof@marussy.com>
3 *
4 * This file is part of Sophie.
5 *
6 * Sophie is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, version 3.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 *
18 * SPDX-License-Identifier: AGPL-3.0-only
19 */
20
21import type { LoggerModule } from 'i18next';
22
23import getLogger from '../utils/getLogger.js';
24
25const log = getLogger('i18nLog');
26
27/*
28 eslint-disable-next-line @typescript-eslint/unbound-method --
29 loglevel log methods don't rely on `this`, so this is safe,
30 and also keeps stacktraces smaller.
31*/
32const { debug, warn, error } = log;
33
34const i18nLog: LoggerModule = {
35 type: 'logger',
36 log: debug,
37 warn,
38 error,
39};
40
41export default i18nLog;