]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: relax RGWPutACLs_ObjStore::get_params read data log 61161/head
authorSeena Fallah <seenafallah@gmail.com>
Mon, 2 Dec 2024 18:38:21 +0000 (19:38 +0100)
committerJ. Eric Ivancich <ivancich@redhat.com>
Fri, 20 Dec 2024 17:22:27 +0000 (12:22 -0500)
the input can be logged with level 20 than zero.

Fixes: https://tracker.ceph.com/issues/69093
Signed-off-by: Seena Fallah <seenafallah@gmail.com>
(cherry picked from commit 4a67cc189e14ef61e049b91ce2f2af3847f1b05d)

src/rgw/rgw_rest.cc

index 8213779d3f740f5bfe9eefc5ec1284e24638e496..5c9fedb3e836a6d9e49813784ce113266368865c 100644 (file)
@@ -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;
 }