This is an automated email from the ASF dual-hosted git repository.

brandonwilliams pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/master by this push:
     new b117565  Move debugging to error in TestBootstrap::test_cleanup
b117565 is described below

commit b117565b8f0096a3ed2af05fdec6e014a05788a1
Author: Brandon Williams <[email protected]>
AuthorDate: Fri Oct 2 15:19:45 2020 -0500

    Move debugging to error in TestBootstrap::test_cleanup
    
    Patch by brandonwilliams, reviewed by Berenguer Blasi for
    CASSANDRA-15997
---
 bootstrap_test.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/bootstrap_test.py b/bootstrap_test.py
index 20e2545..526992d 100644
--- a/bootstrap_test.py
+++ b/bootstrap_test.py
@@ -815,12 +815,12 @@ class TestBootstrap(Tester):
 
     def _monitor_datadir(self, node, event, basecount, jobs, failed):
         while True:
-            sstables = [s for s in node.get_sstables("keyspace1", "standard1") 
if "tmplink" not in s]
-            logger.debug("---")
-            for sstable in sstables:
-                logger.debug(sstable)
             if len(sstables) > basecount + jobs:
-                logger.debug("Current count is {}, basecount was 
{}".format(len(sstables), basecount))
+                sstables = [s for s in node.get_sstables("keyspace1", 
"standard1") if "tmplink" not in s]
+                logger.error("---")
+                for sstable in sstables:
+                    logger.error(sstable)
+                logger.error("Current count is {}, basecount was 
{}".format(len(sstables), basecount))
                 failed.set()
                 return
             if event.is_set():


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to