]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore/BlueFS: less verbose about alloc adjustments 33512/head
authorSage Weil <sage@redhat.com>
Mon, 24 Feb 2020 15:34:23 +0000 (09:34 -0600)
committerSage Weil <sage@redhat.com>
Mon, 24 Feb 2020 15:34:23 +0000 (09:34 -0600)
These happen normally.

Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueFS.cc

index f54d9d254138cd04a44c2a6935a31aabe4a051f6..1e77c09ee5f52bf60c339db1295d02f223c9c5b8 100644 (file)
@@ -894,9 +894,9 @@ int BlueFS::_adjust_granularity(
     }
   }
   if (oldo != *offset || oldl != *length) {
-    derr << __func__ << " " << op << " "
-        << (int)id << ":" << std::hex << oldo << "~" << oldl
-        << " -> " << (int)id << ":" << *offset << "~" << *length << dendl;
+    dout(10) << __func__ << " " << op << " "
+            << (int)id << ":" << std::hex << oldo << "~" << oldl
+            << " -> " << (int)id << ":" << *offset << "~" << *length << dendl;
   }
   return 0;
 }