diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-24 15:42:35 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-24 15:42:35 -0700 |
commit | 5d7ac0a00e9f4c33e095be9be4d79ae302c0c4c4 (patch) | |
tree | dbf226a46cf426bd73bbf77ff1e0773ce12f8e14 /cmd/ponzu/main.go | |
parent | 30d20c99a641dcd685221d6ddfa1e101f7672d1b (diff) |
removing debug printlns and modifying other fmt.Println to log.Println for consistency
Diffstat (limited to 'cmd/ponzu/main.go')
-rw-r--r-- | cmd/ponzu/main.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index 434de67..48aef9e 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -186,10 +186,7 @@ func main() { } if https { - // fmt.Println("TLS through Let's Encrypt is not implemented yet.") - // fmt.Println("Please run 'ponzu serve' without the --https flag for now.") - // os.Exit(1) - + fmt.Println("Enabling HTTPS...") tls.Enable() } |