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 Mar 13, 2024
1 parent b4b595e commit b6ac04d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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 flaky at 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,7 +73,7 @@ var _ = ginkgo.Describe("[Load Simulator]", ginkgo.Ordered, func() {
nodes,
tmpnet.FlagsMap{
// The default tmpnet log level (debug) induces too much overhead for load testing.
config.LogLevelKey: "info",
config.LogLevelKey: "debug",
},
utils.NewTmpnetSubnet(subnetAName, genesisPath, chainConfig, nodes...),
),
Expand Down

0 comments on commit b6ac04d

Please sign in to comment.