Skip to content

Commit

Permalink
dcrd: Switch a peer mixing log from trace to debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
dajohi committed May 28, 2024
1 parent baec90b commit 6d08c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,8 @@ func (sp *serverPeer) handleServeGetData(invVects []*wire.InvVect,
mixHash := &iv.Hash
msg, err := sp.server.mixMsgPool.Message(mixHash)
if err != nil {
peerLog.Tracef("Unable to fetch requested mix message %v: %v",
mixHash, err)
peerLog.Debugf("Unable to fetch requested mix message %v from %v: %v",
mixHash, sp, err)
break
}
dataMsg = msg
Expand Down

0 comments on commit 6d08c54

Please sign in to comment.