From: Nathan Cutler Date: Sun, 24 May 2020 19:47:36 +0000 (+0200) Subject: osd: make "missing incremental map" a debug log message X-Git-Tag: wip-pdonnell-testing-20200918.022351~1147^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=9dcf0a835aa234ed2cd89f1dde1e3aaba9cb1340;p=ceph-ci.git osd: make "missing incremental map" a debug log message 47a3f63ef71522d6b9572e81674598dd3e19df9d introduced the following error message build_incremental_map_msg missing incremental map 33087 The message causes users to be concerned, yet it does not require action on their part. Fixes: https://tracker.ceph.com/issues/45606 Signed-off-by: Nathan Cutler --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index b410b82b57b..cded8b141b1 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -1436,7 +1436,7 @@ MOSDMap *OSDService::build_incremental_map_msg(epoch_t since, epoch_t to, if (get_inc_map_bl(e, bl)) { m->incremental_maps[e].claim(bl); } else { - derr << __func__ << " missing incremental map " << e << dendl; + dout(10) << __func__ << " missing incremental map " << e << dendl; if (!get_map_bl(e, bl)) { derr << __func__ << " also missing full map " << e << dendl; goto panic;