change arg ordering in log message

This commit is contained in:
Tony Li 2017-01-27 12:52:15 -05:00
parent 40406b1480
commit 881ddba90d

View file

@ -383,7 +383,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{
Name: certName,
Certificate: ingCert,