mirror of
https://github.com/hexastack/hexabot
synced 2025-04-05 21:48:01 +00:00
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
/*
|
|
* Copyright © 2025 Hexastack. All rights reserved.
|
|
*
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
*/
|
|
|
|
import {
|
|
ConsoleLogger,
|
|
Inject,
|
|
Injectable,
|
|
LogLevel,
|
|
Scope,
|
|
} from '@nestjs/common';
|
|
import { INQUIRER } from '@nestjs/core';
|
|
|
|
@Injectable({ scope: Scope.TRANSIENT })
|
|
export class LoggerService extends ConsoleLogger {
|
|
constructor(@Inject(INQUIRER) private parentClass: object) {
|
|
super(parentClass.constructor.name, {
|
|
logLevels: process.env.NODE_ENV?.includes('dev')
|
|
? ['log', 'debug', 'error', 'verbose', 'fatal', 'warn']
|
|
: ['log', 'warn', 'error'],
|
|
});
|
|
}
|
|
|
|
log(message: string, ...args: any[]) {
|
|
this.logArguments('log', message, args);
|
|
}
|
|
|
|
error(message: string, ...args: any[]) {
|
|
this.logArguments('error', message, args);
|
|
}
|
|
|
|
warn(message: string, ...args: any[]) {
|
|
this.logArguments('warn', message, args);
|
|
}
|
|
|
|
debug(message: string, ...args: any[]) {
|
|
this.logArguments('debug', message, args);
|
|
}
|
|
|
|
verbose(message: string, ...args: any[]) {
|
|
this.logArguments('verbose', message, args);
|
|
}
|
|
|
|
fatal(message: string, ...args: any[]) {
|
|
this.logArguments('fatal', message, args);
|
|
}
|
|
|
|
private logArguments(type: LogLevel, message: string, args: any[]) {
|
|
super[type](message);
|
|
args.forEach((arg) => {
|
|
super[type](arg instanceof Error ? arg.stack : arg);
|
|
});
|
|
}
|
|
}
|