Revert "log fix"

This reverts commit 449fadd15a.
This commit is contained in:
tamaina 2025-07-21 01:23:30 +09:00
parent 449fadd15a
commit 03e404ce27
1 changed files with 2 additions and 2 deletions

View File

@ -307,9 +307,9 @@ export class ServerService implements OnApplicationShutdown {
public async dispose(): Promise<void> {
console.log('Disposing ServerService...');
await this.streamingApiServerService.detach();
console.log('Streaming API server detached.');
this.logger.info('Streaming API server detached.');
await this.#fastify.close();
console.log('Fastify server closed.');
this.logger.info('Fastify server closed.');
}
/**