summaryrefslogtreecommitdiff
path: root/system/tls/enable.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-12-28 08:46:34 -0800
committerSteve Manuel <nilslice@gmail.com>2016-12-28 08:46:34 -0800
commit659154da8b8d8ade0abd0c8da4f928f108a7558d (patch)
tree68a3699c3b15ce6e822235bd9bd061cf129aba99 /system/tls/enable.go
parentc652d31a3c620340f8c1fbc65042f1c769006a91 (diff)
adding more desctiptive print messages, putting devhttps server on goroutine
Diffstat (limited to 'system/tls/enable.go')
-rw-r--r--system/tls/enable.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/tls/enable.go b/system/tls/enable.go
index 5e16b92..77ff287 100644
--- a/system/tls/enable.go
+++ b/system/tls/enable.go
@@ -65,7 +65,7 @@ func setup() {
}
-// Enable runs the setup for creating or locating production certificates and
+// Enable runs the setup for creating or locating production certificates and
// starts the TLS server
func Enable() {
setup()
@@ -76,5 +76,5 @@ func Enable() {
}
go log.Fatalln(server.ListenAndServeTLS("", ""))
- fmt.Println("Server listening for HTTPS requests...")
+ fmt.Println("Server listening on :443 for HTTPS requests...")
}