add verbose flag to example server

This commit is contained in:
Lucas Clemente 2016-05-06 13:29:01 +02:00
parent 02ab3480ff
commit 3cfc9b66a8

View file

@ -13,13 +13,18 @@ import (
)
func main() {
utils.SetLogLevel(utils.LogLevelDebug)
verbose := flag.Bool("v", false, "verbose")
bindTo := flag.String("bind", "localhost", "bind to")
certPath := flag.String("certpath", "", "certificate directory")
www := flag.String("www", "/var/www", "www data")
flag.Parse()
if *verbose {
utils.SetLogLevel(utils.LogLevelDebug)
} else {
utils.SetLogLevel(utils.LogLevelInfo)
}
var tlsConfig *tls.Config
if *certPath == "" {
tlsConfig = testdata.GetTLSConfig()