]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: make bdev label parse error less noisy
authorSage Weil <sage@redhat.com>
Wed, 24 Jan 2018 03:06:27 +0000 (21:06 -0600)
committerSage Weil <sage@redhat.com>
Wed, 24 Jan 2018 03:06:27 +0000 (21:06 -0600)
This happens during the normal initialization of a new bluestore osd and it
is confusing for users.  Make it less noisy.

Signed-off-by: Sage Weil <sage@redhat.com>
src/os/bluestore/BlueStore.cc

index b65d5cf3d5929e1b7f2ef1cb1e3fe06eb85c94c7..b3e9553be271d1c0426795a4ba99d8228ff95add 100644 (file)
@@ -4200,7 +4200,7 @@ int BlueStore::_read_bdev_label(CephContext* cct, string path,
     decode(expected_crc, p);
   }
   catch (buffer::error& e) {
-    derr << __func__ << " unable to decode label at offset " << p.get_off()
+    dout(2) << __func__ << " unable to decode label at offset " << p.get_off()
         << ": " << e.what()
         << dendl;
     return -EINVAL;