Skip to content

Commit

Permalink
Fix missing blank in log text (apache#3781)
Browse files Browse the repository at this point in the history
Co-authored-by: gavingaozhangmin <gavingaozhangmin@didiglobal.com>
  • Loading branch information
gaozhangmin and gavingaozhangmin authored Feb 16, 2023
1 parent c217385 commit 1162512
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ public void run() {
// Need recovery open, close the old ledger handle.
lh.close();
// Recovery open could result in client write failure.
LOG.warn("Missing bookie(s) from last segment. Opening Ledger{} for Recovery.", ledgerId);
LOG.warn("Missing bookie(s) from last segment. Opening Ledger {} for Recovery.", ledgerId);
lh = admin.openLedger(ledgerId);
isRecoveryOpen = true;
}
Expand All @@ -642,7 +642,7 @@ public void run() {
// Need recovery open, close the old ledger handle.
lh.close();
// Recovery open could result in client write failure.
LOG.warn("Open Fragment{}. Opening Ledger{} for Recovery.",
LOG.warn("Open Fragment{}. Opening Ledger {} for Recovery.",
fragment.getEnsemble(), ledgerId);
lh = admin.openLedger(ledgerId);
isRecoveryOpen = true;
Expand Down

0 comments on commit 1162512

Please sign in to comment.