Skip to content

Commit

Permalink
fix: unmarshal error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
damonto committed Jul 16, 2024
1 parent 623e8a8 commit d746fcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/pkg/util/euicc.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ var EUMs []*EUM

func init() {
if err := json.Unmarshal(eum, &EUMs); err != nil {
slog.Error("failed to unmarshal EUMs", err)
slog.Error("failed to unmarshal EUMs", "error", err)
}
if err := json.Unmarshal(ci, &certificateIssuers); err != nil {
slog.Error("failed to unmarshal certificate issuers", err)
slog.Error("failed to unmarshal certificate issuers", "error", err)
}
}

Expand Down

0 comments on commit d746fcf

Please sign in to comment.