]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: relax RGWPutACLs_ObjStore::get_params read data log 60910/head
authorSeena Fallah <seenafallah@gmail.com>
Mon, 2 Dec 2024 18:38:21 +0000 (19:38 +0100)
committerSeena Fallah <seenafallah@gmail.com>
Mon, 2 Dec 2024 18:38:21 +0000 (19:38 +0100)
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>
src/rgw/rgw_rest.cc

index a202d5acf4e1190121aa7915782a70d5e078f812..03241b7369ac3c4144bb09e5c59ec092a84c4264 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;
 }