Skip to content

Commit

Permalink
format dates as strings properly
Browse files Browse the repository at this point in the history
  • Loading branch information
anarcat committed Dec 17, 2024
1 parent c3d19c2 commit b409d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions silence/silence.go
Original file line number Diff line number Diff line change
Expand Up @@ -1089,8 +1089,8 @@ func (s *Silences) logginSilences(msg string, sil *pb.Silence) {
"Id", sil.Id,
"CreatedBy", sil.CreatedBy,
"Comment", sil.Comment,
"StartsAt", sil.StartsAt,
"EndsAt", sil.EndsAt,
"StartsAt", FormatDate(sil.StartsAt),
"EndsAt", FormatDate(sil.EndsAt),
"Matchers", strMatchers,
)
}

0 comments on commit b409d1e

Please sign in to comment.