Debug output

This commit is contained in:
Denis Zheleztsov 2018-11-06 14:19:40 +03:00
parent b0cd2003f5
commit 9e16ac479a

View File

@ -15,6 +15,7 @@ var (
esMessagesType string esMessagesType string
add string add string
email string email string
debug bool
) )
// init ... // init ...
@ -25,9 +26,12 @@ func init() {
flag.StringVar(&esMessagesType, "estype", "post", "ES index type") flag.StringVar(&esMessagesType, "estype", "post", "ES index type")
flag.StringVar(&add, "add", "", "User to add") flag.StringVar(&add, "add", "", "User to add")
flag.StringVar(&email, "email", "", "User email address") flag.StringVar(&email, "email", "", "User email address")
flag.BoolVar(&debug, "debug", false, "Debug output")
flag.Parse() flag.Parse()
log.SetLevel(log.DebugLevel) if debug {
log.SetLevel(log.DebugLevel)
}
} }
// main ... // main ...