frankxieke commented on a change in pull request #2757:
URL: https://github.com/apache/bookkeeper/pull/2757#discussion_r678768707
##########
File path:
bookkeeper-server/src/main/java/org/apache/bookkeeper/proto/ReadLacProcessorV3.java
##########
@@ -74,10 +74,10 @@ private ReadLacResponse getReadLacResponse() {
}
} catch (Bookie.NoLedgerException e) {
status = StatusCode.ENOLEDGER;
- logger.error("No ledger found while performing readLac from
ledger: {}", ledgerId, e);
+ logger.warn("No ledger found while performing readLac from ledger:
{}", ledgerId, e);
} catch (IOException e) {
status = StatusCode.EIO;
- logger.error("IOException while performing readLac from ledger:
{}", ledgerId);
+ logger.warn("IOException while performing readLac from ledger:
{}", ledgerId);
Review comment:
the message is like this
`1) 03:32:11.130 [BookieReadThreadPool-OrderedExecutor-0-0] ERROR
org.apache.bookkeeper.proto.ReadLacProcessorV3 - IOException while trying to
read last entry: 2
org.apache.bookkeeper.bookie.Bookie$NoEntryException: Entry -1 not found in 2
`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]