-
Notifications
You must be signed in to change notification settings - Fork 60
/
log.service.ts
88 lines (75 loc) · 2.13 KB
/
log.service.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
import { Request, Response } from 'express';
import { injectable } from 'inversify';
import ILogger from '../interfaces/ilogger';
const pino = require('pino')();
/**
* Logging Facade that wraps the Pino logger implementation
*/
@injectable()
class LogService implements ILogger {
private logger: any;
private uuid: string;
public constructor() {
// do something construct...
this.initLogger();
}
public getLogger(): any {
return this.logger;
}
public info(...message) {
const UUID = this.getUUID();
this.logger.info({ UUID, data: { ...message } });
}
public debug(...message) {
const UUID = this.getUUID();
this.logger.debug({ UUID, data: { ...message } });
}
public error(...message) {
const UUID = this.getUUID();
this.logger.error({ UUID, data: { ...message } });
}
/**
* Since the express response time middleware is enabled
* x-response-time gets set and that along with the UUID
* is added to the log
* @param req
* @param res
* @param message
*/
public logAPITraceOut(req: Request, res: Response, message?: any) {
const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
const responseTime = res.getHeader('x-response-time');
const status = res.status;
const uuid = this.getUUID();
if (message !== undefined) {
this.logger.info({ uuid, fullUrl, status, responseTime, message });
} else {
this.logger.info({ uuid, fullUrl, status, responseTime });
}
}
public logAPITrace(
req: Request,
res: Response,
statusCode: number,
message?: any
) {
const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
const responseTime = res.getHeader('x-response-time');
const uuid = this.getUUID();
if (message !== undefined) {
this.logger.info({ uuid, fullUrl, statusCode, responseTime, message });
} else {
this.logger.info({ uuid, fullUrl, statusCode, responseTime });
}
}
public setUUID(uuid: string) {
this.uuid = uuid;
}
public getUUID() {
return this.uuid;
}
private initLogger() {
this.logger = pino;
}
}
export default LogService;