From: Yao guotao Date: Fri, 19 Mar 2021 12:01:31 +0000 (+0000) Subject: src/os: Remove redundant hexadecimal symbols from the log output X-Git-Tag: v17.1.0~2532^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F40238%2Fhead;p=ceph.git src/os: Remove redundant hexadecimal symbols from the log output because they are already printed in the region_t struct. Signed-off-by: Yao guotao --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index e2774f6625d..f2fddbcc684 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -9612,8 +9612,8 @@ int BlueStore::_prepare_read_ioc( for (auto& p : blobs2read) { const BlobRef& bptr = p.first; regions2read_t& r2r = p.second; - dout(20) << __func__ << " blob " << *bptr << std::hex - << " need " << r2r << std::dec << dendl; + dout(20) << __func__ << " blob " << *bptr << " need " + << r2r << dendl; if (bptr->get_blob().is_compressed()) { // read the whole thing if (compressed_blob_bls->empty()) { @@ -9690,8 +9690,8 @@ int BlueStore::_generate_read_result_bl( while (b2r_it != blobs2read.end()) { const BlobRef& bptr = b2r_it->first; regions2read_t& r2r = b2r_it->second; - dout(20) << __func__ << " blob " << *bptr << std::hex - << " need 0x" << r2r << std::dec << dendl; + dout(20) << __func__ << " blob " << *bptr << " need " + << r2r << dendl; if (bptr->get_blob().is_compressed()) { ceph_assert(p != compressed_blob_bls.end()); bufferlist& compressed_bl = *p++;