remove logs

This commit is contained in:
Felicio Mununga 2022-06-06 15:37:37 +02:00
parent fa95a375a3
commit cc4765d602
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 0 additions and 23 deletions

View File

@ -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)
}
}