Remove unnecessary log

As it is unlikely to decode as utf-8.
This commit is contained in:
Franck Royer 2022-03-01 16:52:31 +11:00
parent f73afc5244
commit 067ebebdf0
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 1 additions and 5 deletions

View File

@ -19,11 +19,7 @@ export class Message {
return new Message(chatMsg, wakuMsg.timestamp);
}
} catch (e) {
console.error(
"Failed to decode chat message",
wakuMsg.payloadAsUtf8,
e
);
console.error("Failed to decode chat message", e);
}
}
return;