aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/utils/log.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/utils/log.ts')
-rw-r--r--packages/main/src/utils/log.ts66
1 files changed, 66 insertions, 0 deletions
diff --git a/packages/main/src/utils/log.ts b/packages/main/src/utils/log.ts
new file mode 100644
index 0000000..c704797
--- /dev/null
+++ b/packages/main/src/utils/log.ts
@@ -0,0 +1,66 @@
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 const timeStr = timestamp.toString();
49 const nameStr = typeof name === 'undefined'
50 ? levelColor(':')
51 : ` ${chalk.green(`${name}:`)}`;
52 return `${chalk.gray(`[${timeStr}]`)} ${levelColor(level)}${nameStr}`;
53 },
54});
55
56export function getLogger(loggerName: string): Logger {
57 return loglevel.getLogger(loggerName);
58}
59
60export function silenceLogger(): void {
61 loglevel.disableAll();
62 const loggers = loglevel.getLoggers();
63 Object.keys(loggers).forEach((loggerName) => {
64 loggers[loggerName].disableAll();
65 });
66}