mirror of
https://github.com/MisskeyIO/misskey
synced 2025-01-15 22:33:38 +09:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
26 lines
643 B
TypeScript
26 lines
643 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { Config } from '@/config.js';
|
|
import Logger from '@/logger.js';
|
|
import { bindThis } from '@/decorators.js';
|
|
import type { KEYWORD } from 'color-convert/conversions.js';
|
|
|
|
@Injectable()
|
|
export class LoggerService {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public getLogger(domain: string, color?: KEYWORD | undefined, store?: boolean) {
|
|
return new Logger(domain, color, store);
|
|
}
|
|
}
|