mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
add veryverbose to ouput raft debug info
This commit is contained in:
parent
d1158f5a11
commit
0e6ebfa1f6
7
etcd.go
7
etcd.go
@ -27,6 +27,7 @@ import (
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
var verbose bool
|
||||
var veryVerbose bool
|
||||
|
||||
var machines string
|
||||
var machinesFile string
|
||||
@ -58,6 +59,7 @@ var retryTimes int
|
||||
|
||||
func init() {
|
||||
flag.BoolVar(&verbose, "v", false, "verbose logging")
|
||||
flag.BoolVar(&veryVerbose, "vv", false, "very verbose logging")
|
||||
|
||||
flag.StringVar(&machines, "C", "", "the ip address and port of a existing machines in the cluster, sepearate by comma")
|
||||
flag.StringVar(&machinesFile, "CF", "", "the file contains a list of existing machines in the cluster, seperate by comma")
|
||||
@ -154,6 +156,11 @@ var info *Info
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
||||
if veryVerbose {
|
||||
verbose = true
|
||||
raft.SetLogLevel(raft.Debug)
|
||||
}
|
||||
|
||||
if machines != "" {
|
||||
cluster = strings.Split(machines, ",")
|
||||
} else if machinesFile != "" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user