[ 
https://issues.apache.org/jira/browse/FLUME-831?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13153050#comment-13153050
 ] 

Hudson commented on FLUME-831:
------------------------------

Integrated in flume-728 #62 (See [https://builds.apache.org/job/flume-728/62/])
    FLUME-831. Removing log4j dependency from flume-jdbc channel.

arvind : http://svn.apache.org/viewvc/?view=rev&rev=1203783
Files : 
* /incubator/flume/branches/flume-728
* /incubator/flume/branches/flume-728/flume-ng-channels
* 
/incubator/flume/branches/flume-728/flume-ng-channels/flume-jdbc-channel/pom.xml
* 
/incubator/flume/branches/flume-728/flume-ng-channels/flume-jdbc-channel/src/main/java/org/apache/flume/channel/jdbc/JdbcChannel.java
* /incubator/flume/branches/flume-728/flume-ng-sinks

                
> flume-jdbc-channel project has unnecessary direct dependency on log4j API
> -------------------------------------------------------------------------
>
>                 Key: FLUME-831
>                 URL: https://issues.apache.org/jira/browse/FLUME-831
>             Project: Flume
>          Issue Type: Bug
>          Components: Sinks+Sources
>    Affects Versions: NG alpha 1
>            Reporter: Will McQueen
>            Assignee: Arvind Prabhakar
>             Fix For: NG beta 1
>
>
> Please use slf4j API instead of direct log4j API. So in 
> org.apache.flume.channel.jdbc.JdbcChannel, just change this:
>      import org.apache.log4j.Logger;
>      private static final Logger LOG = Logger.getLogger(JdbcChannel.class);
> ...to this:
>      import org.slf4j.Logger;
>      import org.slf4j.LoggerFactory;
>      private static final Logger LOG = 
> LoggerFactory.getLogger(JdbcChannel.class);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to