]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
bluestore: add "0x" prefix for tracing messages 9516/head
authorxie xingguo <xie.xingguo@zte.com.cn>
Thu, 2 Jun 2016 11:29:01 +0000 (19:29 +0800)
committerSage Weil <sage@redhat.com>
Mon, 6 Jun 2016 13:10:49 +0000 (09:10 -0400)
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
src/os/bluestore/BlueStore.cc

index 6149752c75bb9d547644cc097b60090532c0f8cb..e08610d938bfedb91341b7887e450f145dd5239e 100644 (file)
@@ -2629,7 +2629,7 @@ int BlueStore::fsck()
       ghobject_t oid;
       if (is_bnode_key(it->key())) {
        if (expecting_objects) {
-         dout(30) << __func__ << "  had bnode but no objects for "
+         dout(30) << __func__ << "  had bnode but no objects for 0x"
                   << std::hex << expecting_hash << std::dec << dendl;
          ++errors;
        }
@@ -2646,7 +2646,7 @@ int BlueStore::fsck()
       }
       if (expecting_objects) {
        if (oid.hobj.get_bitwise_key_u32() != expecting_hash) {
-         dout(30) << __func__ << "  had bnode but no objects for "
+         dout(30) << __func__ << "  had bnode but no objects for 0x"
                   << std::hex << expecting_hash << std::dec << dendl;
          ++errors;
        }
@@ -2672,7 +2672,7 @@ int BlueStore::fsck()
       }
     }
     if (expecting_objects) {
-      dout(30) << __func__ << "  had bnode but no objects for "
+      dout(30) << __func__ << "  had bnode but no objects for 0x"
               << std::hex << expecting_hash << std::dec << dendl;
       ++errors;
       expecting_objects = false;