Skip to content

Commit 7f28888

Browse files
committed
Log raw bytes in addition to xml
1 parent 01523b1 commit 7f28888

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

client.go

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ package whatsmeow
99

1010
import (
1111
"context"
12+
"encoding/base64"
1213
"encoding/hex"
1314
"errors"
1415
"fmt"
@@ -693,6 +694,7 @@ func (cli *Client) handleFrame(data []byte) {
693694
return
694695
}
695696
cli.recvLog.Debugf("%s", node.XMLString())
697+
cli.recvLog.Debugf("%s", base64.StdEncoding.EncodeToString(decompressed))
696698
if node.Tag == "xmlstreamend" {
697699
if !cli.isExpectedDisconnect() {
698700
cli.Log.Warnf("Received stream end frame")
@@ -771,6 +773,7 @@ func (cli *Client) sendNodeAndGetData(node waBinary.Node) ([]byte, error) {
771773
}
772774

773775
cli.sendLog.Debugf("%s", node.XMLString())
776+
cli.sendLog.Debugf("%s", base64.StdEncoding.EncodeToString(payload))
774777
return payload, sock.SendFrame(payload)
775778
}
776779

0 commit comments

Comments
 (0)