Log raw send response data
This commit is contained in:
parent
c1c9455c16
commit
7cf98e493f
1 changed files with 5 additions and 0 deletions
|
@ -131,6 +131,11 @@ func (s *SessionHandler) receiveResponse(msg *IncomingRPCMessage) bool {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
evt.Msg("Received response")
|
evt.Msg("Received response")
|
||||||
|
if msg.Message.Action == gmproto.ActionType_SEND_MESSAGE {
|
||||||
|
s.client.Logger.Debug().
|
||||||
|
Str("send_response_data", base64.StdEncoding.EncodeToString(msg.DecryptedData)).
|
||||||
|
Msg("Message send response data")
|
||||||
|
}
|
||||||
ch <- msg
|
ch <- msg
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue