Skip to content

Commit d207481

Browse files
authored
[ISSUE#159] Fix DLedgerClient the log format is incorrect (#160)
1 parent 118d3bd commit d207481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/openmessaging/storage/dledger/client/DLedgerClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public AppendEntryResponse append(byte[] body) {
7777
return response;
7878
} catch (Exception e) {
7979
needFreshMetadata();
80-
logger.error("{}", e);
80+
logger.error("Append error", e);
8181
AppendEntryResponse appendEntryResponse = new AppendEntryResponse();
8282
appendEntryResponse.setCode(DLedgerResponseCode.INTERNAL_ERROR.getCode());
8383
return appendEntryResponse;

0 commit comments

Comments
 (0)