From: Seena Fallah Date: Mon, 2 Dec 2024 18:38:21 +0000 (+0100) Subject: rgw: relax RGWPutACLs_ObjStore::get_params read data log X-Git-Tag: v19.2.3~192^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=383661be400fc4de2cd33c932fe42e4eef4d0a62;p=ceph.git rgw: relax RGWPutACLs_ObjStore::get_params read data log the input can be logged with level 20 than zero. Fixes: https://tracker.ceph.com/issues/69093 Signed-off-by: Seena Fallah (cherry picked from commit 4a67cc189e14ef61e049b91ce2f2af3847f1b05d) --- diff --git a/src/rgw/rgw_rest.cc b/src/rgw/rgw_rest.cc index 8213779d3f740..5c9fedb3e836a 100644 --- a/src/rgw/rgw_rest.cc +++ b/src/rgw/rgw_rest.cc @@ -1467,7 +1467,7 @@ int RGWPutACLs_ObjStore::get_params(optional_yield y) { const auto max_size = s->cct->_conf->rgw_max_put_param_size; std::tie(op_ret, data) = read_all_input(s, max_size, false); - ldpp_dout(s, 0) << "RGWPutACLs_ObjStore::get_params read data is: " << data.c_str() << dendl; + ldpp_dout(s, 20) << "RGWPutACLs_ObjStore::get_params read data is: " << data.c_str() << dendl; return op_ret; }