if (*pos + size < header.start)
return true; // fits
- dout(10) << "JOURNAL FULL (and wrapped), " << *pos << "+" << size
+ dout(1) << "JOURNAL FULL (and wrapped), " << *pos << "+" << size
<< " >= " << header.start
<< dendl;
} else {
}
// no room.
- dout(10) << "submit_entry JOURNAL FULL (and can't wrap), " << *pos << "+" << size
+ dout(1) << "submit_entry JOURNAL FULL (and can't wrap), " << *pos << "+" << size
<< " >= " << header.max_size
<< dendl;
}
if (!full_commit_seq && full_restart_seq &&
seq >= full_restart_seq) {
- dout(10) << " seq " << seq << " >= full_restart_seq " << full_restart_seq
+ dout(1) << " seq " << seq << " >= full_restart_seq " << full_restart_seq
<< ", restarting journal" << dendl;
full_restart_seq = 0;
}
// was full?
if (full_commit_seq && seq >= full_commit_seq) {
dout(1) << " seq " << seq << " >= full_commit_seq " << full_commit_seq
- << ", prior journal contents are now fully committed. resetting journal." << dendl;
+ << ", prior journal contents are now fully committed. resetting journal." << dendl;
full_commit_seq = 0;
}