forked from git-truck/git-truck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.server.ts
94 lines (81 loc) · 2.11 KB
/
log.server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
export enum LOG_LEVEL {
SILENT,
ERROR,
WARN,
INFO,
DEBUG,
}
export enum LOG_LEVEL_LABEL {
SILENT = "",
ERROR = "ERR",
WARN = "WRN",
INFO = "NFO",
DEBUG = "DBG",
}
const stringToLevelMap: Record<string, LOG_LEVEL> = {
SILENT: LOG_LEVEL.SILENT,
ERROR: LOG_LEVEL.ERROR,
WARN: LOG_LEVEL.WARN,
INFO: LOG_LEVEL.INFO,
DEBUG: LOG_LEVEL.DEBUG,
}
const { ERROR, WARN, INFO, DEBUG } = LOG_LEVEL_LABEL
function setIntialLogLevel() {
if (typeof process.env.LOG_LEVEL === "string") return stringToLevelMap[process.env.LOG_LEVEL.toUpperCase()]
if (typeof process.env.LOG_LEVEL === "number") return process.env.LOG_LEVEL
return null
}
let logLevel = setIntialLogLevel()
export const getLogLevel = () => logLevel
export function setLogLevel(level: string) {
const newLevel = stringToLevelMap[level.trim().toUpperCase()]
if (typeof newLevel === "undefined") {
throw new Error(`Invalid log level: ${level}`)
}
logLevel = newLevel
}
export function error(message: Error | unknown) {
if (logLevel === null) return
if (logLevel >= LOG_LEVEL.ERROR) {
const messageString =
message instanceof Error ? `${prefix(ERROR)}${message.message}\n${message.stack}` : `${prefix(ERROR)}${message}`
console.error(messageString)
}
}
export function warn(message: unknown) {
if (logLevel === null) return
if (logLevel >= LOG_LEVEL.WARN) {
const messageString = `${prefix(WARN)}${message}`
console.warn(messageString)
}
}
export function info(message: unknown) {
if (logLevel === null) return
if (logLevel >= LOG_LEVEL.INFO) {
const messageString = `${prefix(INFO)}${message}`
console.info(messageString)
}
}
export function debug(message: unknown) {
if (logLevel === null) return
if (logLevel >= LOG_LEVEL.DEBUG) {
const messageString = `${prefix(DEBUG)}${message}`
console.debug(messageString)
}
}
export function raw(message: unknown) {
if (logLevel === null) return
if (logLevel >= LOG_LEVEL.INFO) {
console.info(message)
}
}
function prefix(label: LOG_LEVEL_LABEL): string {
return `[${label}] `
}
export const log = {
error,
warn,
info,
debug,
raw,
}