Skip to content

Commit

Permalink
revert debug logging in TestCatchupOverGossip
Browse files Browse the repository at this point in the history
  • Loading branch information
algorandskiy committed Jun 20, 2024
1 parent 7a60a70 commit 338f8bf
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions test/e2e-go/features/catchup/basicCatchup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,6 @@ func runCatchupOverGossip(t fixtures.TestingTB,
a.NoError(err)
a.Empty(cfg.NetworkProtocolVersion)
cfg.NetworkProtocolVersion = ledgerNodeDowngradeTo
cfg.BaseLoggerDebugLevel = 5 // debug logging while debugging this test
cfg.SaveToDisk(dir)
} else {
// TODO: remove when TestCatchupOverGossip is fixed
dir, err := fixture.GetNodeDir("Node")
a.NoError(err)
cfg, err := config.LoadConfigFromDisk(dir)
a.NoError(err)
cfg.BaseLoggerDebugLevel = 5 // debug logging while debugging this test
cfg.SaveToDisk(dir)
}

Expand All @@ -147,14 +138,6 @@ func runCatchupOverGossip(t fixtures.TestingTB,
a.NoError(err)
a.Empty(cfg.NetworkProtocolVersion)
cfg.NetworkProtocolVersion = fetcherNodeDowngradeTo
cfg.BaseLoggerDebugLevel = 5 // debug logging while debugging this test
cfg.SaveToDisk(dir)
} else {
// TODO: remove when TestCatchupOverGossip is fixed
dir := fixture.PrimaryDataDir()
cfg, err := config.LoadConfigFromDisk(dir)
a.NoError(err)
cfg.BaseLoggerDebugLevel = 5 // debug logging while debugging this test
cfg.SaveToDisk(dir)
}

Expand Down

0 comments on commit 338f8bf

Please sign in to comment.