Skip to content

Commit

Permalink
Remove logging statements (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
samsondav authored Sep 6, 2024
1 parent e401698 commit 9f0a98d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions llo/plugin_reports.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ func (p *Plugin) reports(seqNr uint64, rawOutcome ocr3types.Outcome) ([]ocr3type

outcome, err := p.OutcomeCodec.Decode(rawOutcome)
if err != nil {
fmt.Println("TRASH 1", err)
return nil, fmt.Errorf("error unmarshalling outcome: %w", err)
}
fmt.Println("TRASH 2", outcome)

observationsTimestampSeconds, err := outcome.ObservationsTimestampSeconds()
if err != nil {
Expand Down Expand Up @@ -96,8 +94,6 @@ func (p *Plugin) encodeReport(r Report, cd llotypes.ChannelDefinition) (types.Re
if !exists {
return nil, fmt.Errorf("codec missing for ReportFormat=%q", cd.ReportFormat)
}
fmt.Printf("TRASH report: %v\n", r)
fmt.Printf("TRASH report: %#v\n", r)
return codec.Encode(r, cd)
}

Expand Down

0 comments on commit 9f0a98d

Please sign in to comment.