Skip to content

Commit

Permalink
add run
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed May 30, 2024
1 parent 61a90f5 commit 258589c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mixing/mixpool/mixpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -849,11 +849,11 @@ func (p *Pool) AcceptMessage(msg mixing.Message) (accepted []mixing.Message, err
format = "AcceptMessage: rejected message %T %v: %v"
args = append(args, msg, hash, err)
case !isPR && err == nil:
format = "AcceptMessage: accepted message %T %v (session %x)"
args = append(args, msg, hash, msg.Sid())
format = "AcceptMessage: accepted message %T %v (session %x run %d)"
args = append(args, msg, hash, msg.Sid(), msg.GetRun())
case !isPR && err != nil:
format = "AcceptMessage: rejected message %T %v (session %x): %v"
args = append(args, msg, hash, msg.Sid(), err)
format = "AcceptMessage: rejected message %T %v (session %x run %d): %v"
args = append(args, msg, hash, msg.Sid(), msg.GetRun(), err)
}
log.Tracef(format, args...)
}()
Expand Down

0 comments on commit 258589c

Please sign in to comment.