From: Ali Maredia Date: Tue, 25 Feb 2020 05:29:30 +0000 (-0500) Subject: rgw: increase log level for same or older period pull msg X-Git-Tag: v15.1.1~201^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F33527%2Fhead;p=ceph.git rgw: increase log level for same or older period pull msg Signed-off-by: Ali Maredia --- diff --git a/src/rgw/rgw_zone.cc b/src/rgw/rgw_zone.cc index ac2d8ab6fb14..79cdbd85de34 100644 --- a/src/rgw/rgw_zone.cc +++ b/src/rgw/rgw_zone.cc @@ -1096,7 +1096,7 @@ int RGWPeriod::update_latest_epoch(epoch_t epoch) return r; } else if (epoch <= info.epoch) { r = -EEXIST; // fail with EEXIST if epoch is not newer - ldout(cct, 1) << "found existing latest_epoch " << info.epoch + ldout(cct, 10) << "found existing latest_epoch " << info.epoch << " >= given epoch " << epoch << ", returning r=" << r << dendl; return r; } else {