} else {
string user_key;
decode_omap_key(it->key(), &user_key);
- dout(30) << __func__ << " got " << pretty_binary_string(it->key())
+ dout(20) << __func__ << " got " << pretty_binary_string(it->key())
<< " -> " << user_key << dendl;
(*out)[user_key] = it->value();
}
}
string user_key;
decode_omap_key(it->key(), &user_key);
- dout(30) << __func__ << " got " << pretty_binary_string(it->key())
+ dout(20) << __func__ << " got " << pretty_binary_string(it->key())
<< " -> " << user_key << dendl;
keys->insert(user_key);
it->next();
get_omap_header(id, &prefix);
get_omap_tail(id, &tail);
txc->t->rm_range_keys(omap_prefix, prefix, tail);
- dout(30) << __func__ << "remove range start: "
+ dout(20) << __func__ << "remove range start: "
<< pretty_binary_string(prefix) << " end: "
<< pretty_binary_string(tail) << dendl;
}
::decode(value, p);
final_key.resize(9); // keep prefix
final_key += key;
- dout(30) << __func__ << " " << pretty_binary_string(final_key)
+ dout(20) << __func__ << " " << pretty_binary_string(final_key)
<< " <- " << key << dendl;
txc->t->set(prefix, final_key, value);
}
::decode(key, p);
final_key.resize(9); // keep prefix
final_key += key;
- dout(30) << __func__ << " rm " << pretty_binary_string(final_key)
+ dout(20) << __func__ << " rm " << pretty_binary_string(final_key)
<< " <- " << key << dendl;
txc->t->rmkey(prefix, final_key);
}
get_omap_key(o->onode.nid, first, &key_first);
get_omap_key(o->onode.nid, last, &key_last);
txc->t->rm_range_keys(prefix, key_first, key_last);
- dout(30) << __func__ << "remove range start: "
+ dout(20) << __func__ << "remove range start: "
<< pretty_binary_string(key_first) << " end: "
<< pretty_binary_string(key_last) << dendl;
}