[ISSUE#4950] fix wrong typo about DLedger (#4951)

* style(controller): fix the wrong typo about DLedger

1. fix the wrong typo about DLedger

* style(controller): fix the wrong typo about DLedger

1. fix the wrong typo about DLedger
This commit is contained in:
TheR1sing3un
2022-08-31 20:11:17 +08:00
committed by GitHub
parent b6191b8f5a
commit f043ca8c18
@@ -36,13 +36,13 @@ public class DLedgerControllerStateMachine implements StateMachine {
private static final InternalLogger log = InternalLoggerFactory.getLogger(LoggerName.CONTROLLER_LOGGER_NAME);
private final ReplicasInfoManager replicasInfoManager;
private final EventSerializer eventSerializer;
private final String dledgerId;
private final String dLedgerId;
public DLedgerControllerStateMachine(final ReplicasInfoManager replicasInfoManager,
final EventSerializer eventSerializer, final String dledgerId) {
final EventSerializer eventSerializer, final String dLedgerId) {
this.replicasInfoManager = replicasInfoManager;
this.eventSerializer = eventSerializer;
this.dledgerId = dledgerId;
this.dLedgerId = dLedgerId;
}
@Override
@@ -57,7 +57,7 @@ public class DLedgerControllerStateMachine implements StateMachine {
}
applyingSize++;
}
log.info("Apply {} events on controller {}", applyingSize, this.dledgerId);
log.info("Apply {} events on controller {}", applyingSize, this.dLedgerId);
}
@Override