]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: don't print bnode key
authorSage Weil <sage@redhat.com>
Thu, 2 Jun 2016 19:52:12 +0000 (15:52 -0400)
committerSage Weil <sage@redhat.com>
Fri, 3 Jun 2016 15:00:30 +0000 (11:00 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.cc

index f94821e0d90bd902d8df878fb3769c41467c07a5..93b975bbbf467a8da84e1f975cb4a5b9bdc58841 100644 (file)
@@ -4330,13 +4330,13 @@ void BlueStore::_txc_write_nodes(TransContext *txc, KeyValueDB::Transaction t)
        p != txc->bnodes.end();
        ++p) {
     if ((*p)->blob_map.empty()) {
-      dout(20) << "  bnode " << std::hex << (*p)->hash << " " << (*p)->key << std::dec
+      dout(20) << "  bnode " << std::hex << (*p)->hash << std::dec
               << " blob_map is empty" << dendl;
       t->rmkey(PREFIX_OBJ, (*p)->key);
     } else {
       bufferlist bl;
       ::encode((*p)->blob_map, bl);
-      dout(20) << "  bnode " << std::hex << (*p)->hash << " " << (*p)->key << std::dec
+      dout(20) << "  bnode " << std::hex << (*p)->hash << std::dec
               << " blob_map is " << bl.length() << dendl;
       t->set(PREFIX_OBJ, (*p)->key, bl);
     }