Replace the "recv a new msg from peer" debug log

to trace level
This commit is contained in:
Zoltan Papp
2023-05-12 11:07:41 +02:00
parent d56669ec2e
commit dcc83c8741

View File

@@ -350,7 +350,7 @@ func (c *GrpcClient) receive(stream proto.SignalExchange_ConnectStreamClient,
} else if err != nil {
return err
}
log.Debugf("received a new message from Peer [fingerprint: %s]", msg.Key)
log.Tracef("received a new message from Peer [fingerprint: %s]", msg.Key)
decryptedMessage, err := c.decryptMessage(msg)
if err != nil {