misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
evilsocket 2018-08-27 10:14:31 +02:00
parent 868aba8de0
commit 3b6ea499dd
No known key found for this signature in database
GPG key ID: 1564D7F30393A456

View file

@ -143,8 +143,8 @@ func (api *RestAPI) Configure() error {
}
log.Debug("%+v", cfg)
log.Info("Generating TLS key to %s", api.keyFile)
log.Info("Generating TLS certificate to %s", api.certFile)
log.Info("generating TLS key to %s", api.keyFile)
log.Info("generating TLS certificate to %s", api.certFile)
if err := tls.Generate(cfg, api.certFile, api.keyFile); err != nil {
return err
}