feat(gateway:events): remove debug logs

This commit is contained in:
DjDeveloperr 2020-12-05 12:26:01 +05:30
parent dfb99fb6b9
commit 2422866a3b
1 changed files with 3 additions and 4 deletions

View File

@ -9,20 +9,19 @@ export const typingStart: GatewayEventHandler = async (
d: TypingStartPayload
) => {
const user = await gateway.client.users.get(d.user_id)
if (user === undefined) return console.log('user not cached')
if (user === undefined) return
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
const channel = (await gateway.client.channels.get(
d.channel_id
)) as TextChannel
if (channel === undefined) return console.log(`channel not cached`)
if (channel === undefined) return
const guild =
d.guild_id !== undefined
? await gateway.client.guilds.get(d.guild_id)
: undefined
if (guild === undefined && d.guild_id !== undefined)
return console.log('guild not cached')
if (guild === undefined && d.guild_id !== undefined) return
const member =
d.member !== undefined && guild !== undefined