From: John Spray Date: Wed, 7 Jun 2017 15:11:48 +0000 (-0400) Subject: mgr: don't log successful ceph_config_get as err X-Git-Tag: v12.1.0~211^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ec9801ec94111017cce60ffca7a90e7076a6ffdd;p=ceph.git mgr: don't log successful ceph_config_get as err Signed-off-by: John Spray --- diff --git a/src/mgr/PyState.cc b/src/mgr/PyState.cc index 1635f761d6c7..d84ce3ec99ff 100644 --- a/src/mgr/PyState.cc +++ b/src/mgr/PyState.cc @@ -199,7 +199,7 @@ ceph_config_get(PyObject *self, PyObject *args) std::string value; bool found = global_handle->get_config(handle, what, &value); if (found) { - derr << "ceph_config_get " << what << " found: " << value.c_str() << dendl; + dout(10) << "ceph_config_get " << what << " found: " << value.c_str() << dendl; return PyString_FromString(value.c_str()); } else { derr << "ceph_config_get " << what << " not found " << dendl;