2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-16 16:09:41 +02:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-18 17:07:41 +03:00
|
|
|
import type Logger from '@/logger.js';
|
|
|
|
import { LoggerService } from '@/core/LoggerService.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ApiLoggerService {
|
|
|
|
public logger: Logger;
|
|
|
|
|
|
|
|
constructor(
|
2022-09-18 17:07:41 +03:00
|
|
|
private loggerService: LoggerService,
|
2022-09-17 21:27:08 +03:00
|
|
|
) {
|
2022-09-18 17:07:41 +03:00
|
|
|
this.logger = this.loggerService.getLogger('api');
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
}
|