2022-09-18 17:07:41 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-18 17:07:41 +03:00
|
|
|
import Logger from '@/logger.js';
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-12-13 17:01:45 +02:00
|
|
|
import type { KEYWORD } from 'color-convert/conversions';
|
2022-09-18 17:07:41 +03:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class LoggerService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-12-13 17:01:45 +02:00
|
|
|
public getLogger(domain: string, color?: KEYWORD | undefined, store?: boolean) {
|
2023-02-03 08:08:36 +02:00
|
|
|
return new Logger(domain, color, store);
|
2022-09-18 17:07:41 +03:00
|
|
|
}
|
|
|
|
}
|