void MgrStatMonitor::create_initial()
{
- dout(10) << __func__ << dendl;
+ dout(10) << dendl;
version = 0;
}
void MgrStatMonitor::update_from_paxos(bool *need_bootstrap)
{
version = get_last_committed();
- dout(10) << __func__ << " " << version << dendl;
+ dout(10) << " " << version << dendl;
bufferlist bl;
get_version(version, bl);
if (version) {
void MgrStatMonitor::create_pending()
{
- dout(10) << __func__ << " " << version << dendl;
+ dout(10) << " " << version << dendl;
pending_digest = digest;
pending_health_summary = health_summary;
pending_health_detail = health_detail;
void MgrStatMonitor::encode_pending(MonitorDBStore::TransactionRef t)
{
++version;
- dout(10) << __func__ << " " << version << dendl;
+ dout(10) << " " << version << dendl;
bufferlist digestbl, bl;
::encode(pending_digest, digestbl, mon->get_quorum_con_features());
::encode(digestbl, bl);