Github user joshelser commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/24#discussion_r26906707
--- Diff:
core/src/main/java/org/apache/accumulo/core/client/impl/ScannerIterator.java ---
@@ -92,13 +92,13 @@ public void run() {
return;
}
} catch (IsolationException | ScanTimedOutException |
AccumuloException | AccumuloSecurityException | TableDeletedException |
TableOfflineException e) {
- log.trace(e.getMessage(), e);
+ log.trace("{}", e.getMessage(), e);
--- End diff --
General question: is it worth inserting the formatting string when there
isn't any concatenation happening?
---
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 [email protected] or file a JIRA ticket
with INFRA.
---