From: Sage Weil Date: Fri, 15 Mar 2019 12:10:41 +0000 (-0500) Subject: crush/CrushWrapper: make update_choose_args less chatty X-Git-Tag: v15.0.0~144^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F26955%2Fhead;p=ceph.git crush/CrushWrapper: make update_choose_args less chatty These were now exposed due to cct being passed down to more places. Signed-off-by: Sage Weil --- diff --git a/src/crush/CrushWrapper.cc b/src/crush/CrushWrapper.cc index 12e4ca10e384..5ac5849574e3 100644 --- a/src/crush/CrushWrapper.cc +++ b/src/crush/CrushWrapper.cc @@ -418,16 +418,16 @@ void CrushWrapper::update_choose_args(CephContext *cct) if (!b || b->alg != CRUSH_BUCKET_STRAW2) { if (carg.ids) { if (cct) - ldout(cct,0) << __func__ << " removing " << i.first << " bucket " - << (-1-j) << " ids" << dendl; + ldout(cct,10) << __func__ << " removing " << i.first << " bucket " + << (-1-j) << " ids" << dendl; free(carg.ids); carg.ids = 0; carg.ids_size = 0; } if (carg.weight_set) { if (cct) - ldout(cct,0) << __func__ << " removing " << i.first << " bucket " - << (-1-j) << " weight_sets" << dendl; + ldout(cct,10) << __func__ << " removing " << i.first << " bucket " + << (-1-j) << " weight_sets" << dendl; for (unsigned p = 0; p < carg.weight_set_positions; ++p) { free(carg.weight_set[p].weights); }