From 383661be400fc4de2cd33c932fe42e4eef4d0a62 Mon Sep 17 00:00:00 2001 From: Seena Fallah Date: Mon, 2 Dec 2024 19:38:21 +0100 Subject: [PATCH] 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) --- src/rgw/rgw_rest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5