mirror of https://github.com/waku-org/js-waku.git
Remove unnecessary log
As it is unlikely to decode as utf-8.
This commit is contained in:
parent
f73afc5244
commit
067ebebdf0
|
@ -19,11 +19,7 @@ export class Message {
|
||||||
return new Message(chatMsg, wakuMsg.timestamp);
|
return new Message(chatMsg, wakuMsg.timestamp);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(
|
console.error("Failed to decode chat message", e);
|
||||||
"Failed to decode chat message",
|
|
||||||
wakuMsg.payloadAsUtf8,
|
|
||||||
e
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue