Skip to content

Commit

Permalink
[ISSUE #8782] Fix log typo (#8783)
Browse files Browse the repository at this point in the history
  • Loading branch information
luozongle01 authored Oct 5, 2024
1 parent 6eb5a10 commit c5ac8a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ public void executeRequestWhenWakeup(final Channel channel, final RemotingComman
}
}
} catch (RemotingCommandException e1) {
LOGGER.error("excuteRequestWhenWakeup run", e1);
LOGGER.error("executeRequestWhenWakeup run", e1);
}
};
this.brokerController.getPullMessageExecutor().submit(new RequestTask(run, channel, request));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public V get(final long timeout) {
try {
lock.wait(waitTime);
} catch (InterruptedException e) {
LOG.error("promise get value interrupted,excepiton:{}", e.getMessage());
LOG.error("promise get value interrupted,exception:{}", e.getMessage());
}

if (!isDoing()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void shutdown() {
super.shutdown(true);
for (AllocateRequest req : this.requestTable.values()) {
if (req.mappedFile != null) {
log.info("delete pre allocated maped file, {}", req.mappedFile.getFileName());
log.info("delete pre allocated mapped file, {}", req.mappedFile.getFileName());
req.mappedFile.destroy(1000);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public void run() {
}

} catch (Exception e) {
logger.error("{} get unknown errror", getServiceName(), e);
logger.error("{} get unknown error", getServiceName(), e);
try {
Thread.sleep(1000);
} catch (Throwable ignored) {
Expand Down

0 comments on commit c5ac8a4

Please sign in to comment.