From: Sage Weil Date: Wed, 24 Jan 2018 03:06:27 +0000 (-0600) Subject: os/bluestore: make bdev label parse error less noisy X-Git-Tag: v12.2.3~24^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9c083ea16b02c4daef444629439247a415c557c7;p=ceph.git os/bluestore: make bdev label parse error less noisy 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 (cherry picked from commit 14c498dd22d1e89d30a0896e89fe83e8adf6ac76) --- diff --git a/src/os/bluestore/BlueStore.cc b/src/os/bluestore/BlueStore.cc index 207a233851e80..044ffdc94f569 100644 --- a/src/os/bluestore/BlueStore.cc +++ b/src/os/bluestore/BlueStore.cc @@ -4091,7 +4091,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;