Tobi Vollebregt created HBASE-12732:
---------------------------------------
Summary: Log messages in FileLink$FileLinkInputStream#tryOpen are
reversed
Key: HBASE-12732
URL: https://issues.apache.org/jira/browse/HBASE-12732
Project: HBase
Issue Type: Bug
Components: hbase
Reporter: Tobi Vollebregt
Priority: Trivial
The log message in `tryOpen` is reversed:
{code:java}
if (currentPath != null) {
LOG.debug("link open path=" + path);
} else {
LOG.trace("link switch from path=" + currentPath + " to path=" +
path);
}
{code}
By reading the logic, we can see that when switching paths (currentPath !=
null) it will log that it opened a path, and when opening a path, it will print
that it switched from path=null to the new path.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)