Skip to content

Commit

Permalink
change precision to ms (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
aratz-lasa authored Jan 20, 2023
1 parent 629f5de commit e66cbc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func (s *Service) RunBeacon(ctx context.Context, client BeaconClient) error {
"numDuties": len(duties),
"numKnownValidators": len(validators),
"knownValidatorsUpdateTime": s.knownValidatorsUpdateTime(),
"processingTimeMs": time.Since(t),
"processingTimeMs": time.Since(t).Milliseconds(),
}).Debug("processed new slot")
}
}
Expand Down

0 comments on commit e66cbc2

Please sign in to comment.