Skip to content

Commit

Permalink
e2e: Enable verbose load test logging to highlight breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
marun committed Feb 26, 2024
1 parent 81f894d commit 91aa423
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/load/load_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ var _ = ginkgo.Describe("[Load Simulator]", ginkgo.Ordered, func() {

// The load tests are allergic to high levels of evm logging, so leave it at
// the default level instead of raising it to debug (as the warp testing does).
chainConfig := tmpnet.FlagsMap{}
chainConfig := tmpnet.FlagsMap{
"log-level": "debug",
}

nodes := utils.NewTmpnetNodes(nodeCount)

Expand All @@ -71,8 +73,8 @@ var _ = ginkgo.Describe("[Load Simulator]", ginkgo.Ordered, func() {
nodes,
tmpnet.FlagsMap{
// The default tmpnet log level (info/debug) induces too much overhead for load testing.
config.LogDisplayLevelKey: "error",
config.LogLevelKey: "info",
config.LogDisplayLevelKey: "info",
config.LogLevelKey: "debug",
},
utils.NewTmpnetSubnet(subnetAName, genesisPath, chainConfig, nodes...),
),
Expand Down

0 comments on commit 91aa423

Please sign in to comment.