From: Casey Bodley Date: Tue, 6 Jun 2017 20:03:43 +0000 (-0400) Subject: rgw: raise debug level of meta sync logging X-Git-Tag: v12.1.0~98^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=06975933dae0f93d1e31c0999d02da8ed6927b3c;p=ceph-ci.git rgw: raise debug level of meta sync logging Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_sync.cc b/src/rgw/rgw_sync.cc index 7a8a8bec2f1..b931a094d5a 100644 --- a/src/rgw/rgw_sync.cc +++ b/src/rgw/rgw_sync.cc @@ -1426,7 +1426,7 @@ public: } } - ldout(sync_env->cct, 0) << *this << ": adjusting marker pos=" << sync_marker.marker << dendl; + ldout(sync_env->cct, 4) << *this << ": adjusting marker pos=" << sync_marker.marker << dendl; stack_to_pos.erase(iter); } } @@ -1526,7 +1526,7 @@ ldout(cct, 0) << __FILE__ << ":" << __LINE__ << ":" << *this << ": num_spawned() temp_marker->marker = std::move(temp_marker->next_step_marker); temp_marker->next_step_marker.clear(); temp_marker->realm_epoch = realm_epoch; - ldout(sync_env->cct, 0) << *this << ": saving marker pos=" << temp_marker->marker << " realm_epoch=" << realm_epoch << dendl; + ldout(sync_env->cct, 4) << *this << ": saving marker pos=" << temp_marker->marker << " realm_epoch=" << realm_epoch << dendl; using WriteMarkerCR = RGWSimpleRadosWriteCR; yield call(new WriteMarkerCR(sync_env->async_rados, sync_env->store, @@ -1599,7 +1599,7 @@ ldout(cct, 0) << __FILE__ << ":" << __LINE__ << ":" << *this << ": num_spawned() } // if the period has advanced, we can't use the existing marker if (sync_marker.realm_epoch < realm_epoch) { - ldout(sync_env->cct, 0) << "clearing marker=" << sync_marker.marker + ldout(sync_env->cct, 4) << "clearing marker=" << sync_marker.marker << " from old realm_epoch=" << sync_marker.realm_epoch << " (now " << realm_epoch << ')' << dendl; sync_marker.realm_epoch = realm_epoch;