]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
crush/CrushWrapper: lower log level of check_item_loc()
authorKefu Chai <kchai@redhat.com>
Tue, 30 Jan 2018 10:53:12 +0000 (18:53 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 28 Mar 2018 14:37:27 +0000 (22:37 +0800)
it's not an error if the item is not at loc.

Fixes: http://tracker.ceph.com/issues/23471
Signed-off-by: Kefu Chai <kchai@redhat.com>
(cherry picked from commit c1f43343450a84cbc1bde016e58b3b51479c3ab5)

src/crush/CrushWrapper.cc

index 52af91f6f47d1f9c9815dd3f112b659c9878a8aa..09c57c26adfe66b5429436fb4cc230b2ae0a4978 100644 (file)
@@ -666,7 +666,7 @@ bool CrushWrapper::check_item_loc(CephContext *cct, int item, const map<string,s
     return false;
   }
   
-  ldout(cct, 1) << "check_item_loc item " << item << " loc " << loc << dendl;
+  ldout(cct, 2) << __func__ << " item " << item << " loc " << loc << dendl;
   return false;
 }