fix: umami
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 5s
Build & Deploy / 🧪 QA (push) Failing after 35s
Build & Deploy / 🏗️ Build (push) Failing after 4m45s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notifications (push) Successful in 1s
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 5s
Build & Deploy / 🧪 QA (push) Failing after 35s
Build & Deploy / 🏗️ Build (push) Failing after 4m45s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notifications (push) Successful in 1s
This commit is contained in:
@@ -31,32 +31,26 @@ export class PinoLoggerService implements LoggerService {
|
||||
}
|
||||
|
||||
trace(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.trace(msg, ...args);
|
||||
}
|
||||
|
||||
debug(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.debug(msg, ...args);
|
||||
}
|
||||
|
||||
info(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.info(msg, ...args);
|
||||
}
|
||||
|
||||
warn(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.warn(msg, ...args);
|
||||
}
|
||||
|
||||
error(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.error(msg, ...args);
|
||||
}
|
||||
|
||||
fatal(msg: string, ...args: any[]) {
|
||||
// @ts-expect-error - pino types can be strict
|
||||
this.logger.fatal(msg, ...args);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user