From 3cfc9b66a81fd097f6f901b87e5ddfc752ece14c Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Fri, 6 May 2016 13:29:01 +0200 Subject: [PATCH] add verbose flag to example server --- example/main.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/example/main.go b/example/main.go index eb5bf128..96c28cbb 100644 --- a/example/main.go +++ b/example/main.go @@ -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()