From 80261959e74139abcc988b866a58bca5ce3befef Mon Sep 17 00:00:00 2001 From: gmega Date: Sat, 13 Apr 2024 16:36:16 +0300 Subject: [PATCH] set log level to info --- Tests/CodexTests/ScalabilityTests/ScalabilityTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/CodexTests/ScalabilityTests/ScalabilityTests.cs b/Tests/CodexTests/ScalabilityTests/ScalabilityTests.cs index c597d49..b767f39 100644 --- a/Tests/CodexTests/ScalabilityTests/ScalabilityTests.cs +++ b/Tests/CodexTests/ScalabilityTests/ScalabilityTests.cs @@ -19,10 +19,10 @@ public class ScalabilityTests : CodexDistTest ) { CodexContainerRecipe.DockerImageOverride = usePatchedImage ? PatchedImage : MasterImage; - + var bootstrap = AddCodex(); var nodes = AddCodex(numberOfNodes - 1, - s => s.WithBootstrapNode(bootstrap)).ToList(); + s => s.WithBootstrapNode(bootstrap).WithLogLevel(CodexLogLevel.Info)).ToList(); var uploader = nodes.PickOneRandom(); var downloader = nodes.PickOneRandom();