From c5e095177c12e2547bf2f58bc151ffe747d29572 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 22 Jan 2013 10:24:37 -0800 Subject: [PATCH] config: clean up output Report a simple list of key='value', without extra verbosity. Signed-off-by: Sage Weil --- src/common/config.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/config.cc b/src/common/config.cc index f7f87ed6f91c9..210ffae7582c7 100644 --- a/src/common/config.cc +++ b/src/common/config.cc @@ -539,8 +539,7 @@ void md_config_t::_apply_changes(std::ostream *oss) if ((oss) && (!_get_val(key.c_str(), &bufptr, sizeof(buf))) && key != "internal_safe_to_start_threads") { - (*oss) << "applying configuration change: " << key << " = '" - << buf << "'\n"; + (*oss) << key << " = '" << buf << "' "; } pair < obs_map_t::iterator, obs_map_t::iterator > range(observers.equal_range(key)); -- 2.39.5