]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: reduce debug level for pg epoch min
authorSage Weil <sage@redhat.com>
Mon, 2 Apr 2018 14:12:25 +0000 (09:12 -0500)
committerSage Weil <sage@redhat.com>
Wed, 4 Apr 2018 13:27:00 +0000 (08:27 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/osd/OSD.cc

index 37f175d22e2c90c016535facff72d75297ded1a2..803430c622d746e185bc14537c64e94ed23f5acb 100644 (file)
@@ -9314,13 +9314,13 @@ void OSDShard::_detach_pg(OSDShardPGSlot *slot)
 void OSDShard::update_pg_epoch(OSDShardPGSlot *slot, epoch_t e)
 {
   Mutex::Locker l(sdata_op_ordering_lock);
-  dout(20) << "min was " << pg_slots_by_epoch.begin()->epoch
+  dout(30) << "min was " << pg_slots_by_epoch.begin()->epoch
           << " on " << pg_slots_by_epoch.begin()->pg->pg_id << dendl;
   pg_slots_by_epoch.erase(pg_slots_by_epoch.iterator_to(*slot));
   dout(20) << slot->pg->pg_id << " " << slot->epoch << " -> " << e << dendl;
   slot->epoch = e;
   pg_slots_by_epoch.insert(*slot);
-  dout(20) << "min is now " << pg_slots_by_epoch.begin()->epoch
+  dout(30) << "min is now " << pg_slots_by_epoch.begin()->epoch
           << " on " << pg_slots_by_epoch.begin()->pg->pg_id << dendl;
   if (waiting_for_min_pg_epoch) {
     min_pg_epoch_cond.Signal();