Skip to content

Commit

Permalink
removed new line in watcher/validator.go measurement log
Browse files Browse the repository at this point in the history
  • Loading branch information
miampf committed Apr 3, 2024
1 parent bb3445d commit 4323961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion joinservice/internal/watcher/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func (u *Updatable) Update() error {
if err != nil {
return fmt.Errorf("unmarshaling config: %w", err)
}
u.log.Debug(fmt.Sprintf("New expected measurements:\n%s", cfg.GetMeasurements().String()))
u.log.Debug(fmt.Sprintf("New expected measurements: %s", cfg.GetMeasurements().String()))

cfgWithCerts, err := u.configWithCerts(cfg)
if err != nil {
Expand Down

0 comments on commit 4323961

Please sign in to comment.