From 171a8698665e09021ec1a9cd9cde23b9e5d63604 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 24 Feb 2020 09:34:23 -0600 Subject: [PATCH] os/bluestore/BlueFS: less verbose about alloc adjustments These happen normally. Signed-off-by: Sage Weil --- src/os/bluestore/BlueFS.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/os/bluestore/BlueFS.cc b/src/os/bluestore/BlueFS.cc index f54d9d25413..1e77c09ee5f 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; } -- 2.39.5