Merge pull request #222 from tonglil/fix-log-message

Change arg ordering in log message
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-02-25 08:12:41 -03:00 committed by GitHub
commit 712b60f197

View file

@ -386,7 +386,7 @@ func (l *L7) checkSSLCert() (err error) {
} }
} }
glog.Infof("Creating new sslCertificates %v for %v", l.Name, certName) glog.Infof("Creating new sslCertificates %v for %v", certName, l.Name)
cert, err = l.cloud.CreateSslCertificate(&compute.SslCertificate{ cert, err = l.cloud.CreateSslCertificate(&compute.SslCertificate{
Name: certName, Name: certName,
Certificate: ingCert, Certificate: ingCert,