summaryrefslogtreecommitdiffstats
path: root/src/mgr
diff options
context:
space:
mode:
authorJohn Spray <john.spray@redhat.com>2017-06-07 17:11:48 +0200
committerJohn Spray <john.spray@redhat.com>2017-06-08 15:57:20 +0200
commitec9801ec94111017cce60ffca7a90e7076a6ffdd (patch)
treead8bda1e29c6f382b2222efc3f92fe659620af50 /src/mgr
parentMerge pull request #15575 from liewegas/wip-pgnls-note (diff)
downloadceph-ec9801ec94111017cce60ffca7a90e7076a6ffdd.tar.xz
ceph-ec9801ec94111017cce60ffca7a90e7076a6ffdd.zip
mgr: don't log successful ceph_config_get as err
Signed-off-by: John Spray <john.spray@redhat.com>
Diffstat (limited to 'src/mgr')
-rw-r--r--src/mgr/PyState.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mgr/PyState.cc b/src/mgr/PyState.cc
index 1635f761d6c..d84ce3ec99f 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;