diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-28 08:46:34 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-28 08:46:34 -0800 |
commit | 659154da8b8d8ade0abd0c8da4f928f108a7558d (patch) | |
tree | 68a3699c3b15ce6e822235bd9bd061cf129aba99 /cmd/ponzu/main.go | |
parent | c652d31a3c620340f8c1fbc65042f1c769006a91 (diff) |
adding more desctiptive print messages, putting devhttps server on goroutine
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index 3764984..09edcc0 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -173,7 +173,7 @@ func main() { // cannot run production HTTPS and development HTTPS together if devhttps { - fmt.Println("Enabling self-signed HTTPS...") + fmt.Println("Enabling self-signed HTTPS... [DEV]") tls.EnableDev() } else if https { fmt.Println("Enabling HTTPS...") |