You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Tobi Vollebregt (JIRA)" <ji...@apache.org> on 2014/12/19 23:50:13 UTC

[jira] [Created] (HBASE-12732) Log messages in FileLink$FileLinkInputStream#tryOpen are reversed

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)