Skip to content

Commit

Permalink
chg: ignore explicitly Errorf return value
Browse files Browse the repository at this point in the history
  • Loading branch information
marcello33 committed Jun 10, 2024
1 parent 6f3d913 commit 8e02767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func appendBigInt(dst []byte, n *big.Int) []byte {
}

if len(n.String()) > 64*1024*1024 {
fmt.Errorf("%s value in appendBigInt is too large to format", n.String())
_ = fmt.Errorf("%s value in appendBigInt is too large to format", n.String())
}

var (
Expand Down

0 comments on commit 8e02767

Please sign in to comment.