diff mbox

config: Remove debug output in conf_get

Message ID 1303995788-31867-1-git-send-email-wido@widodh.nl (mailing list archive)
State New, archived
Headers show

Commit Message

Wido den Hollander April 28, 2011, 1:03 p.m. UTC
Signed-off-by: Wido den Hollander <wido@widodh.nl>
---
 src/common/config.cc |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/src/common/config.cc b/src/common/config.cc
index 695e039..8b4ce85 100644
--- a/src/common/config.cc
+++ b/src/common/config.cc
@@ -734,7 +734,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()))