mgr/PyState: shut up about get_config on nonexistent keys

Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2017-07-27 18:06:22 -04:00
parent 5e46c354cf
commit 89cf82c599

View File

@ -234,7 +234,7 @@ ceph_config_get(PyObject *self, PyObject *args)
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;
dout(4) << "ceph_config_get " << what << " not found " << dendl;
Py_RETURN_NONE;
}
}