From 53ade34fc67765b6988a43dbe150009f1a9f71b5 Mon Sep 17 00:00:00 2001 From: Alex Chi Z Date: Thu, 19 Sep 2024 15:02:00 -0400 Subject: [PATCH] fix(test): storage scrubber should only log to stdout with info Signed-off-by: Alex Chi Z --- test_runner/fixtures/neon_fixtures.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_runner/fixtures/neon_fixtures.py b/test_runner/fixtures/neon_fixtures.py index fc83cf3f7c6a7..f94d371f0c437 100644 --- a/test_runner/fixtures/neon_fixtures.py +++ b/test_runner/fixtures/neon_fixtures.py @@ -4617,7 +4617,8 @@ def scrubber_cli( "REGION": s3_storage.bucket_region, "BUCKET": s3_storage.bucket_name, "BUCKET_PREFIX": s3_storage.prefix_in_bucket, - "RUST_LOG": "DEBUG", + "RUST_LOG": "INFO", + "PAGESERVER_DISABLE_FILE_LOGGING": "1", } env.update(s3_storage.access_env_vars())