aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/utils/logging.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-08 21:36:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:53:03 +0100
commitd07e7b834831230b53860d0919a68edc2d36193d (patch)
treea1f2a021563ddff54f33341c475fc6c6eb787388 /packages/main/src/utils/logging.ts
parentNew configurations based on review comments (WIP) (diff)
downloadsophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.gz
sophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.zst
sophie-d07e7b834831230b53860d0919a68edc2d36193d.zip
build: Eslint fixes for multi-module project
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/main/src/utils/logging.ts')
-rw-r--r--packages/main/src/utils/logging.ts62
1 files changed, 0 insertions, 62 deletions
diff --git a/packages/main/src/utils/logging.ts b/packages/main/src/utils/logging.ts
deleted file mode 100644
index f703749..0000000
--- a/packages/main/src/utils/logging.ts
+++ /dev/null
@@ -1,62 +0,0 @@
1/*
2 * Copyright (C) 2021-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 chalk, { ChalkInstance } from 'chalk';
22import loglevel, { Logger } from 'loglevel';
23import prefix from 'loglevel-plugin-prefix';
24
25if (import.meta.env?.DEV) {
26 loglevel.setLevel('debug');
27} else {
28 loglevel.setLevel('info');
29}
30
31const COLORS: Partial<Record<string, ChalkInstance>> = {
32 TRACE: chalk.magenta,
33 DEBUG: chalk.cyan,
34 INFO: chalk.blue,
35 WARN: chalk.yellow,
36 ERROR: chalk.red,
37 CRITICAL: chalk.red,
38};
39
40function getColor(level: string): ChalkInstance {
41 return COLORS[level] ?? chalk.gray;
42}
43
44prefix.reg(loglevel);
45prefix.apply(loglevel, {
46 format(level, name, timestamp) {
47 const levelColor = getColor(level);
48 return `${chalk.gray(`[${timestamp}]`)} ${levelColor(level)} ${chalk.green(`${name}:`)}`;
49 },
50});
51
52export function getLogger(loggerName: string): Logger {
53 return loglevel.getLogger(loggerName);
54}
55
56export function silenceLogger(): void {
57 loglevel.disableAll();
58 const loggers = loglevel.getLoggers();
59 for (const loggerName of Object.keys(loggers)) {
60 loggers[loggerName].disableAll();
61 }
62}