From e4dd2a15c10f3437bea55edea52d9dac2be4e4d6 Mon Sep 17 00:00:00 2001 From: Felicio Mununga Date: Mon, 6 Jun 2022 15:37:37 +0200 Subject: [PATCH] remove logs --- packages/status-js/src/client.ts | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/packages/status-js/src/client.ts b/packages/status-js/src/client.ts index 8df49f0c..a7aafdd7 100644 --- a/packages/status-js/src/client.ts +++ b/packages/status-js/src/client.ts @@ -149,13 +149,9 @@ class Community { // Channel messages await this.observeChannelMessages(Object.keys(this.communityMetadata.chats)) - - console.log('CLINET: STARTED') - console.log('COMMUNITY:', this) } private async observeCommunity() { - // console.log('here') this.waku.relay.addDecryptionKey(this.communityDecryptionKey) this.waku.relay.addObserver( message => { @@ -223,7 +219,6 @@ class Community { // todo?: check if waku propagates errors // todo!: request Waku feature to accept decryption keys as a param this.waku.relay.addObserver(this.handleMessage, contentTopics) - console.log('Added observer', contentTopics) } private unobserveChannelMessages(chatIds: string[]) { @@ -238,7 +233,6 @@ class Community { } private handleMessage = (wakuMessage: WakuMessage) => { - console.log('MESSAGE: HANDLE') if (!wakuMessage.payload) { return } @@ -263,8 +257,6 @@ class Community { console.error(err) } - console.log('MESSAGE: DECODED METADATA') - let shouldUpdate = false let _decodedPayload: | ChatMessage @@ -275,8 +267,6 @@ class Community { | undefined switch (decodedMetadata.type) { case ApplicationMetadataMessage.Type.TYPE_CHAT_MESSAGE: { - console.log('MESSAGE:') - if (!wakuMessage.signaturePublicKey) { break } @@ -287,8 +277,6 @@ class Community { ) const decodedPayload = ChatMessage.decode(decodedMetadata.payload) - console.log('MESSAGE: DECODED') - // todo: explain // if (!decodedMetadata.identity) { // break @@ -301,16 +289,10 @@ class Community { const channelId = decodedPayload.chatId.slice(68) - console.log('THIS:', this) - if (!this.channelMessages[channelId]) { this.channelMessages[channelId] = [] } - console.log('THIS:', this) - console.log('CHANNEL:', channelId) - console.log('MESSAGES:', this.channelMessages) - const channelMessage: MessageType = { ...decodedPayload, // ...decodedIdentity, @@ -343,15 +325,12 @@ class Community { }, }, } - console.log('MESSAGE: PREMAPPED') this.channelMessages[channelId].push(channelMessage) shouldUpdate = true _decodedPayload = decodedPayload - console.log('MESSAGE: MAPPED') - break } case ApplicationMetadataMessage.Type.TYPE_EDIT_MESSAGE: { @@ -488,8 +467,6 @@ class Community { this.channelMessagesCallbacks[channelId]?.( this.channelMessages[channelId] ) - - console.log('MESSAGE: NEW', messages, channelId) } }