From: Yingxin Cheng Date: Thu, 24 Mar 2022 02:44:08 +0000 (+0800) Subject: test/crimson/../test_transaction_manager: adjust log level X-Git-Tag: v18.0.0~1075^2~7 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=867b1bf1b54ecd31d966dd90cd8d744cc04e3249;p=ceph.git test/crimson/../test_transaction_manager: adjust log level Signed-off-by: Yingxin Cheng --- diff --git a/src/test/crimson/seastore/test_transaction_manager.cc b/src/test/crimson/seastore/test_transaction_manager.cc index ac70b08d35c1..8df37acf73e2 100644 --- a/src/test/crimson/seastore/test_transaction_manager.cc +++ b/src/test/crimson/seastore/test_transaction_manager.cc @@ -401,10 +401,10 @@ struct transaction_manager_test_t : } void replay() { - logger().debug("{}: begin", __func__); + logger().info("{}: begin", __func__); EXPECT_TRUE(check_usage()); restart(); - logger().debug("{}: end", __func__); + logger().info("{}: end", __func__); } void check() { @@ -932,9 +932,9 @@ TEST_F(transaction_manager_test_t, random_writes) submit_transaction(std::move(t)); } replay(); - logger().debug("random_writes: checking"); + logger().info("random_writes: {} checking", i); check(); - logger().debug("random_writes: done replaying/checking"); + logger().info("random_writes: {} done replaying/checking", i); } }); } @@ -990,10 +990,10 @@ TEST_F(transaction_manager_test_t, random_writes_concurrent) }); }).get0(); replay(); - logger().debug("random_writes: checking"); + logger().info("random_writes_concurrent: checking"); check(); - logger().debug( - "random_writes: {} suceeded, {} failed", + logger().info( + "random_writes_concurrent: {} suceeded, {} failed", writes, failures );