Arina Ielchiieva created DRILL-7542:
---------------------------------------

             Summary: Fix Drill-on-Yarn logger
                 Key: DRILL-7542
                 URL: https://issues.apache.org/jira/browse/DRILL-7542
             Project: Apache Drill
          Issue Type: Bug
    Affects Versions: 1.17.0, 1.16.0
            Reporter: Arina Ielchiieva


Drill project uses Logback logger backed by SLF4J:
{noformat}
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

private static final Logger logger = 
LoggerFactory.getLogger(ResultsListener.class);
{noformat}

Drill-on-Yarn project uses commons loggin:

{noformat}
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

private static final Log LOG = LogFactory.getLog(AbstractScheduler.class);
{noformat}

It would be nice if all project components used the same approach for logging.




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to