]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mgr: don't log successful ceph_config_get as err
authorJohn Spray <john.spray@redhat.com>
Wed, 7 Jun 2017 15:11:48 +0000 (11:11 -0400)
committerJohn Spray <john.spray@redhat.com>
Thu, 8 Jun 2017 13:57:20 +0000 (09:57 -0400)
Signed-off-by: John Spray <john.spray@redhat.com>
src/mgr/PyState.cc

index 1635f761d6c7c3a944758740efd650c3d10c1435..d84ce3ec99ff567c4db6a1e999ee24feb9c0ce1f 100644 (file)
@@ -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;