diff options
author | Sage Weil <sage@redhat.com> | 2017-04-13 20:12:42 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2017-04-13 23:11:19 +0200 |
commit | ef5e1d31e729904671e800aaa58a5d9c92048b6a (patch) | |
tree | 23d14ede25994a18170d4b08a1e065b1147e0660 | |
parent | mon/OSDMonitor: fix creating pg trimming during upgrade (diff) | |
download | ceph-ef5e1d31e729904671e800aaa58a5d9c92048b6a.tar.xz ceph-ef5e1d31e729904671e800aaa58a5d9c92048b6a.zip |
mon/OSDMonitor: slightly better debug output
Signed-off-by: Sage Weil <sage@redhat.com>
-rw-r--r-- | src/mon/OSDMonitor.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index 076edbfd927..93b4414ea60 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -248,7 +248,9 @@ void OSDMonitor::update_from_paxos(bool *need_bootstrap) auto p = bl.begin(); std::lock_guard<std::mutex> l(creating_pgs_lock); creating_pgs.decode(p); - dout(7) << __func__ << " loading creating_pgs e" << creating_pgs.last_scan_epoch << dendl; + dout(7) << __func__ << " loading creating_pgs last_scan_epoch " + << creating_pgs.last_scan_epoch + << " with " << creating_pgs.pgs.size() << " pgs" << dendl; } // walk through incrementals |