From: Casey Bodley Date: Thu, 24 Sep 2020 18:02:30 +0000 (-0400) Subject: rgw: raise debug level of DatalogTrimImplCR message X-Git-Tag: v16.1.0~984^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F37400%2Fhead;p=ceph.git rgw: raise debug level of DatalogTrimImplCR message the message was printed at level 0 even on success Signed-off-by: Casey Bodley --- diff --git a/src/rgw/rgw_trim_datalog.cc b/src/rgw/rgw_trim_datalog.cc index be84c136ec06e..62f6c07d17205 100644 --- a/src/rgw/rgw_trim_datalog.cc +++ b/src/rgw/rgw_trim_datalog.cc @@ -49,9 +49,8 @@ class DatalogTrimImplCR : public RGWSimpleCoroutine { } int request_complete() override { int r = cn->completion()->get_return_value(); - ldout(cct, 0) << __PRETTY_FUNCTION__ << "(): trim of shard=" << shard - << " marker=" << marker << "failed with r=" << r - << ", " << cpp_strerror(r) << dendl; + ldout(cct, 20) << __PRETTY_FUNCTION__ << "(): trim of shard=" << shard + << " marker=" << marker << " returned r=" << r << dendl; set_status() << "request complete; ret=" << r; if (r != -ENODATA) {