]> 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>
Tue, 30 Jan 2018 14:09:58 +0000 (22:09 +0800)
it's not an error if the item is not at loc.

Signed-off-by: Kefu Chai <kchai@redhat.com>
src/crush/CrushWrapper.cc

index 98e2a26e21b178cd9b97f4b4025e0b80bb862fde..b4643158d35af771b69f1464a9893620243748a5 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;
 }