Skip to content

Commit

Permalink
append newlines to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Watkins committed Mar 22, 2022
1 parent cbbc833 commit b067268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/verify/deployments.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ func (o *Options) Execute() error {
}
if result.CertificateError != nil {
logrus.
Infof("error when waiting for certificate to be ready: %v", result.CertificateError)
Infof("error when waiting for certificate to be ready: %v\n", result.CertificateError)
return err
}
logrus.Info("ヽ(•‿•)ノ Cert-manager is READY!")
logrus.Info("ヽ(•‿•)ノ Cert-manager is READY!\n")
return nil
}

Expand Down

0 comments on commit b067268

Please sign in to comment.