From: Wido den Hollander Date: Thu, 28 Apr 2011 13:03:08 +0000 (+0200) Subject: config: Remove debug output in conf_get X-Git-Tag: v0.27.1~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d2a18f6930ca24de7fbce6ec1de565e618b8e519;p=ceph.git config: Remove debug output in conf_get Signed-off-by: Wido den Hollander Signed-off-by: Sage Weil --- diff --git a/src/common/config.cc b/src/common/config.cc index f8cc5667975..1244072e660 100644 --- a/src/common/config.cc +++ b/src/common/config.cc @@ -628,7 +628,6 @@ get_val(const char *key, char **buf, int len) const // In key names, leading and trailing whitespace are not significant. string k(ConfFile::normalize_key_name(key)); - cout << "get_val(key='" << key << "'): k = '" << k << "'" << std::endl; for (int i = 0; i < NUM_CONFIG_OPTIONS; ++i) { const config_option *opt = &config_optionsp[i]; if (strcmp(opt->name, k.c_str()))