diff --git a/src/channels/channels.service.ts b/src/channels/channels.service.ts index 31fb99a..faa1e7d 100644 --- a/src/channels/channels.service.ts +++ b/src/channels/channels.service.ts @@ -264,9 +264,6 @@ export class ChannelsService { const invitingUserId = createInvitationParamDto.invitingUserId; const channelId = createInvitationParamDto.channelId; const invitedUserId = createInvitationParamDto.invitedUserId; - console.log(invitingUserId); - console.log(invitedUserId); - console.log(channelId); // 존재하는 channel인지 확인 await this.checkChannelExist(channelId); diff --git a/src/socket-adapter/socket-io.adapter.ts b/src/socket-adapter/socket-io.adapter.ts index 8db1dd8..f01ab05 100644 --- a/src/socket-adapter/socket-io.adapter.ts +++ b/src/socket-adapter/socket-io.adapter.ts @@ -1,5 +1,5 @@ import { IoAdapter } from '@nestjs/platform-socket.io'; -import { INestApplicationContext, Inject } from '@nestjs/common'; +import { INestApplicationContext } from '@nestjs/common'; import { JwtService } from '@nestjs/jwt'; import { Server, Socket } from 'socket.io'; import { WSUnauthorizedException } from '../common/exception/custom-exception';