GitHub user merlimat opened a pull request: https://github.com/apache/bookkeeper/pull/145
BOOKKEEPER-1057: Do not log error message after read failure in PendingReadOp In PendingReadOp, there is an error message that is printed each time a read on a specific bookie is failing: ```java LOG.error("Read of ledger entry failed: L{} E{}-E{}, Heard from {}. First unread entry is {}", new Object[] { lh.getId(), startEntryId, endEntryId, heardFromHosts, firstUnread }); ``` This message is getting printed each time a ledger is recovered and there is no error, since the ledger recovery logic is to keep reading and incrementing the entryId until a NoEntry error is received. This log message should be set at debug level. You can merge this pull request into a Git repository by running: $ git pull https://github.com/merlimat/bookkeeper debug-message Alternatively you can review and apply these changes as the patch at: https://github.com/apache/bookkeeper/pull/145.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #145 ---- commit 30d94f2325882d5d41c4d3eb92b3e05c5393538b Author: Matteo Merli <mme...@apache.org> Date: 2016-01-12T18:05:01Z BOOKKEEPER-1057: Do not log error message after read failure in PendingReadOp ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---