Skip to content

Commit

Permalink
further reduced log output
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMct committed Apr 23, 2024
1 parent df02a6e commit 3447716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion protocols/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ func (s *Executor) Run(ctx context.Context, trans Transport) error { // TODO: ca
//s.Logf("closed signature queue")
return nil
}
s.Logf("picked up signature from queue: %s", qsig.sig)
err := s.runSignature(qsig.ctx, qsig.sig, qsig.rec)
if err != nil {
s.Logf("error: %s", err)
Expand Down
4 changes: 2 additions & 2 deletions protocols/protocols.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func (p *Protocol) Aggregate(ctx context.Context, incoming <-chan Share) <-chan
aggOut.Share.ProtocolType = p.pd.Type
if err == nil {
aggOut.Share = p.agg.getAggregatedShare()
p.Logf("aggregation done")
//p.Logf("aggregation done")
} else {
aggOut.Error = err
p.Logf("aggregation error: %s", err)
Expand All @@ -277,7 +277,7 @@ func (p *Protocol) Aggregate(ctx context.Context, incoming <-chan Share) <-chan
close(aggOutChan)
}()

p.Logf("[%s] aggregating shares", p.HID())
//p.Logf("[%s] aggregating shares", p.HID())

return aggOutChan
}
Expand Down

0 comments on commit 3447716

Please sign in to comment.