fix log level in drand-halting

This commit is contained in:
Yusef Napora 2020-06-26 10:23:17 -04:00
parent 45068f601a
commit 8ec4eb8030
2 changed files with 5 additions and 4 deletions

View File

@ -81,4 +81,4 @@
drand_period = "1s"
drand_halt_duration = "20s"
drand_halt_begin = "10s"
drand_log_level = "none"
drand_log_level = "info"

View File

@ -38,8 +38,9 @@ instances = { min = 1, max = 100, default = 5 }
drand_period = { type = "duration", default="10s" }
drand_threshold = { type = "int", default = 2 }
drand_gossip_relay = { type = "bool", default = true }
drand_halt_duration = { type = "duration", default="0", desc = "how long to halt drand chain before resuming" }
# Params relevant to pubsub tracing
enable_pubsub_tracer = { type = "bool", default = false }
[[testcases]]
name = "drand-halting"
@ -64,7 +65,7 @@ instances = { min = 1, max = 100, default = 5 }
drand_halt_duration = { type = "duration", default="30s", desc = "how long to halt drand chain before resuming" }
drand_halt_begin = { type = "duration", default="1m", desc = "when to start drand halting (relative to test start time)"}
drand_log_level = { type = "string", default="info" }
# Params relevant to pubsub tracing
enable_pubsub_tracer = { type = "bool", default = false }
# Mining Mode: synchronized -vs- natural time
enable_pubsub_tracer = { type = "bool", default = false } # Mining Mode: synchronized -vs- natural time
mining_mode = { type = "enum", default = "synchronized", options = ["synchronized", "natural"] }