Merge pull request #58809 from ClickHouse/print-entries-to-be-processed-in-trace

Increase log level to trace to help debug `00993_system_parts_race_condition_drop_zookeeper`
This commit is contained in:
János Benjamin Antal 2024-01-16 16:14:22 +01:00 committed by GitHub
commit 1d34f4a304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2690,7 +2690,7 @@ ReplicatedMergeTreeQueue::addSubscriber(ReplicatedMergeTreeQueue::SubscriberCall
}
}
LOG_TEST(log, "Waiting for {} entries to be processed: {}", out_entry_names.size(), fmt::join(out_entry_names, ", "));
LOG_TRACE(log, "Waiting for {} entries to be processed: {}", out_entry_names.size(), fmt::join(out_entry_names, ", "));
}
auto it = subscribers.emplace(subscribers.end(), std::move(callback));