2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-16 15:09:41 +01:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-18 16:07:41 +02:00
|
|
|
import type Logger from '@/logger.js';
|
|
|
|
import { LoggerService } from '@/core/LoggerService.js';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ChartLoggerService {
|
|
|
|
public logger: Logger;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private loggerService: LoggerService,
|
|
|
|
) {
|
|
|
|
this.logger = this.loggerService.getLogger('chart', 'white', process.env.NODE_ENV !== 'test');
|
|
|
|
}
|
|
|
|
}
|