This is set on start, and subsequently gets into the changed set.
Once any other config value is injected, it is the first thing reported
by the logs, but is confusing and useless to the user. Hide it.
Signed-off-by: Sage Weil <sage@inktank.com>
for (changed_set_t::const_iterator c = changed.begin();
c != changed.end(); ++c) {
const std::string &key(*c);
- if ((oss) && (!_get_val(key.c_str(), &bufptr, sizeof(buf)))) {
+ if ((oss) &&
+ (!_get_val(key.c_str(), &bufptr, sizeof(buf))) &&
+ key != "internal_safe_to_start_threads") {
(*oss) << "applying configuration change: " << key << " = '"
<< buf << "'\n";
}