From e390128b3977ac9b450d4f0034aff66711e1ba90 Mon Sep 17 00:00:00 2001 From: Jiongxin Liu Date: Thu, 2 Oct 2025 20:35:53 +0000 Subject: [PATCH] test: add one more logging to test env rule --- .../com/google/cloud/bigtable/test_helpers/env/TestEnvRule.java | 1 + 1 file changed, 1 insertion(+) diff --git a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/test_helpers/env/TestEnvRule.java b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/test_helpers/env/TestEnvRule.java index 7c29e9dcfc8b..86fc88adff57 100644 --- a/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/test_helpers/env/TestEnvRule.java +++ b/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/test_helpers/env/TestEnvRule.java @@ -165,6 +165,7 @@ void cleanUpStale() throws ExecutionException, InterruptedException, IOException * @param stalePrefix */ private void cleanupStaleTables(String stalePrefix) { + LOGGER.info("Start cleaning up stale tables with stalePrefix=" + stalePrefix); for (String tableId : env().getTableAdminClient().listTables()) { if (!tableId.startsWith(PrefixGenerator.PREFIX)) { LOGGER.info("Skip cleaning up table: " + tableId);