From: Kefu Chai Date: Wed, 3 Apr 2019 08:10:23 +0000 (+0800) Subject: crimson/osd: lower debug level on i/o path X-Git-Tag: v15.1.0~3038^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F27338%2Fhead;p=ceph.git crimson/osd: lower debug level on i/o path hopefully it can reduce the contribution of cpu cycles of PG::wait_for_active() Signed-off-by: Kefu Chai --- diff --git a/src/crimson/osd/pg.cc b/src/crimson/osd/pg.cc index e16a07c1b42c..4f6faf338d9c 100644 --- a/src/crimson/osd/pg.cc +++ b/src/crimson/osd/pg.cc @@ -959,7 +959,7 @@ seastar::future<> PG::share_pg_info() seastar::future<> PG::wait_for_active() { - logger().info("wait_for_active: {}", pg_state_string(info.stats.state)); + logger().debug("wait_for_active: {}", pg_state_string(info.stats.state)); if (test_state(PG_STATE_ACTIVE)) { return seastar::now(); } else {