From: Sage Weil Date: Mon, 24 Feb 2020 15:34:23 +0000 (-0600) Subject: os/bluestore/BlueFS: less verbose about alloc adjustments X-Git-Tag: v15.1.1~186^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=171a8698665e09021ec1a9cd9cde23b9e5d63604;p=ceph.git os/bluestore/BlueFS: less verbose about alloc adjustments These happen normally. Signed-off-by: Sage Weil --- diff --git a/src/os/bluestore/BlueFS.cc b/src/os/bluestore/BlueFS.cc index f54d9d254138..1e77c09ee5f5 100644 --- a/src/os/bluestore/BlueFS.cc +++ b/src/os/bluestore/BlueFS.cc @@ -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; }