forked from ZyntariHQ/Invoisio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructured-logger.service.ts
More file actions
60 lines (51 loc) · 1.75 KB
/
Copy pathstructured-logger.service.ts
File metadata and controls
60 lines (51 loc) · 1.75 KB
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
import { Injectable } from "@nestjs/common";
import { RequestContextService } from "./request-context.service";
export type LogLevel = "debug" | "info" | "warn" | "error";
export type StructuredLogFields = Record<string, unknown>;
@Injectable()
export class StructuredLogger {
constructor(private readonly requestContext: RequestContextService) {}
debug(message: string, fields?: StructuredLogFields): void {
this.write("debug", message, fields);
}
info(message: string, fields?: StructuredLogFields): void {
this.write("info", message, fields);
}
warn(message: string, fields?: StructuredLogFields): void {
this.write("warn", message, fields);
}
error(message: string, fields?: StructuredLogFields): void {
this.write("error", message, fields);
}
private write(
level: LogLevel,
message: string,
fields?: StructuredLogFields,
): void {
const ctx = this.requestContext.getStore();
const entry = {
timestamp: new Date().toISOString(),
level,
message,
...(ctx?.correlationId ? { correlationId: ctx.correlationId } : {}),
...(ctx?.traceId ? { traceId: ctx.traceId } : {}),
...(ctx?.workerRunId ? { workerRunId: ctx.workerRunId } : {}),
...(ctx?.workerName ? { workerName: ctx.workerName } : {}),
...(ctx?.httpMethod ? { httpMethod: ctx.httpMethod } : {}),
...(ctx?.httpPath ? { httpPath: ctx.httpPath } : {}),
...(ctx?.merchantId ? { merchantId: ctx.merchantId } : {}),
...(ctx?.userId ? { userId: ctx.userId } : {}),
...fields,
};
const line = JSON.stringify(entry);
if (level === "error") {
console.error(line);
return;
}
if (level === "warn") {
console.warn(line);
return;
}
console.log(line);
}
}