Skip to content

Commit

Permalink
Merge pull request #10 from OutdatedVersion/log_newlines
Browse files Browse the repository at this point in the history
append newlines to logs
  • Loading branch information
alenkacz committed Jan 4, 2023
2 parents cbbc833 + b067268 commit e2e0c79
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 e2e0c79

Please sign in to comment.