2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-08-05 04:33:00 +03:00
|
|
|
import { Injectable } from '@nestjs/common';
|
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';
|
2023-06-25 15:13:15 +03:00
|
|
|
import type { KEYWORD } from 'color-convert/conversions.js';
|
2022-09-18 17:07:41 +03:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class LoggerService {
|
|
|
|
constructor(
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|