]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr: revert dout to derr
authorIgor Golikov <igolikov@ibm.com>
Wed, 13 Aug 2025 12:09:20 +0000 (12:09 +0000)
committerIgor Golikov <igolikov@ibm.com>
Wed, 13 Aug 2025 12:09:20 +0000 (12:09 +0000)
Signed-off-by: Igor Golikov <igolikov@ibm.com>
Fixes: https://tracker.ceph.com/issues/68932
src/mgr/BaseMgrModule.cc

index ddcf9f1d6d794823e480e6c9a5f30fcfd859cca5..8ac3ef021048b394bdada17181861c484b08a760 100644 (file)
@@ -1267,7 +1267,7 @@ ceph_add_mds_perf_query(BaseMgrModule *self, PyObject *args)
               Py_RETURN_NONE;
             }
             if (d.regex.mark_count() == 0) {
-              dout(20) << __func__ << " query " << query_param_name << " item " << j
+              derr << __func__ << " query " << query_param_name << " item " << j
                    << " regex " << d.regex_str << ": no capturing groups"
                    << dendl;
               Py_RETURN_NONE;
@@ -1294,7 +1294,7 @@ ceph_add_mds_perf_query(BaseMgrModule *self, PyObject *args)
       for (int j = 0; j < PyList_Size(query_param_val); j++) {
         PyObject *py_type = PyList_GET_ITEM(query_param_val, j);
         if (!PyUnicode_Check(py_type)) {
-          dout(20) << __func__ << " query " << query_param_name << " item " << j
+          derr << __func__ << " query " << query_param_name << " item " << j
                << " not a string" << dendl;
           Py_RETURN_NONE;
         }