From 8ec4eb80308a028a494cb4e530a63635c7fabd08 Mon Sep 17 00:00:00 2001 From: Yusef Napora Date: Fri, 26 Jun 2020 10:23:17 -0400 Subject: [PATCH] fix log level in drand-halting --- lotus-soup/compositions/composition-drand-halt.toml | 2 +- lotus-soup/manifest.toml | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lotus-soup/compositions/composition-drand-halt.toml b/lotus-soup/compositions/composition-drand-halt.toml index 8528a25b4..366b90f7c 100644 --- a/lotus-soup/compositions/composition-drand-halt.toml +++ b/lotus-soup/compositions/composition-drand-halt.toml @@ -81,4 +81,4 @@ drand_period = "1s" drand_halt_duration = "20s" drand_halt_begin = "10s" - drand_log_level = "none" + drand_log_level = "info" diff --git a/lotus-soup/manifest.toml b/lotus-soup/manifest.toml index f6b7e5955..68b4576a9 100644 --- a/lotus-soup/manifest.toml +++ b/lotus-soup/manifest.toml @@ -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"] }