From: Patrick Donnelly Date: Wed, 14 Jul 2021 20:23:47 +0000 (-0700) Subject: mon: fix debug spacing X-Git-Tag: v15.2.14~7^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a687ee6e21bdcfaf3e4263c71f94e92a75941e89;p=ceph.git mon: fix debug spacing Signed-off-by: Patrick Donnelly (cherry picked from commit 147c27c033005f311c7fdce0b80b57f2de47674e) Conflicts: src/mon/PaxosService.cc: add dout msg --- diff --git a/src/mon/PaxosService.cc b/src/mon/PaxosService.cc index dc994e194eb..6b090eb661a 100644 --- a/src/mon/PaxosService.cc +++ b/src/mon/PaxosService.cc @@ -373,8 +373,11 @@ void PaxosService::maybe_trim() return; version_t trim_to = get_trim_to(); - if (trim_to < get_first_committed()) + if (trim_to < get_first_committed()) { + dout(10) << __func__ << " trim_to " << trim_to << " < first_committed " + << get_first_committed() << dendl; return; + } version_t to_remove = trim_to - get_first_committed(); const version_t trim_min = g_conf().get_val("paxos_service_trim_min");