[
https://issues.apache.org/jira/browse/NUTCH-2345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15811979#comment-15811979
]
ASF GitHub Bot commented on NUTCH-2345:
---------------------------------------
GitHub user kamaci opened a pull request:
https://github.com/apache/nutch/pull/165
NUTCH-2345 Logging with wrong class name at FetchItemQueue is fixed.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/kamaci/nutch NUTCH-2345
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/nutch/pull/165.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #165
----
commit 72f781065806d31fbded2c7880bb3917cc733391
Author: kamaci <[email protected]>
Date: 2017-01-09T16:02:14Z
NUTCH-2345 Logging with wrong class name at FetchItemQueue is fixed.
----
> FetchItemQueue logs are logged with wrong class name
> ----------------------------------------------------
>
> Key: NUTCH-2345
> URL: https://issues.apache.org/jira/browse/NUTCH-2345
> Project: Nutch
> Issue Type: Bug
> Components: fetcher
> Affects Versions: 1.11, 1.12
> Environment: Any
> Reporter: Monika Gupta
> Priority: Minor
> Fix For: 1.13
>
>
> I ran bin/nutch fetch and notice that the log statements of class
> FetchItemQueue.java are logged in logs/hadoop.log with wrong file name as
> FetchItemQueues.java
> Refer the execution log:
> 2017-01-06 15:31:25,562 INFO fetcher.FetchItemQueues - maxThreads = 1
> 2017-01-06 15:31:28,565 INFO fetcher.FetchItemQueues - inProgress = 0
> Issue is in the logger for class FetchItemQueue.java.
> Currently it is-
> private static final Logger LOG =
> LoggerFactory.getLogger(FetchItemQueues.class);
> Correction: It should be-
> private static final Logger LOG =
> LoggerFactory.getLogger(FetchItemQueue.class);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)