]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
crimson/tools/perf_async_msgr: print configurations
authorYingxin Cheng <yingxin.cheng@intel.com>
Thu, 25 May 2023 03:53:43 +0000 (11:53 +0800)
committerYingxin Cheng <yingxin.cheng@intel.com>
Mon, 3 Jul 2023 05:50:18 +0000 (13:50 +0800)
Signed-off-by: Yingxin Cheng <yingxin.cheng@intel.com>
src/crimson/tools/perf_async_msgr.cc

index 007de1e8a21918eb2b04135215010ae58f0991f2..38cc84fbb84e18af6a654de5af6fc8637712aa4d 100644 (file)
@@ -141,5 +141,11 @@ int main(int argc, char** argv)
 
   cct->_conf.set_val("ms_async_op_threads", fmt::format("{}", worker_threads));
 
+  std::cout << "server[" << addr
+            << "](bs=" << bs
+            << ", crc_enabled=" << crc_enabled
+            << ", worker_threads=" << worker_threads
+            << std::endl;
+
   run(cct.get(), target_addr, bs);
 }