[
https://issues.apache.org/jira/browse/HADOOP-12416?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14746846#comment-14746846
]
Hudson commented on HADOOP-12416:
---------------------------------
FAILURE: Integrated in Hadoop-Hdfs-trunk #2316 (See
[https://builds.apache.org/job/Hadoop-Hdfs-trunk/2316/])
HADOOP-12416. Trash messages should be handled by Logger instead of being
delivered on System.out. Contributed by Mingliang Liu. (aajisaka: rev
77aaf4cf7dd344eb094d9c079e5fb993c6696ebf)
*
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/Trash.java
* hadoop-common-project/hadoop-common/CHANGES.txt
> Trash messages should be handled by Logger instead of being delivered on
> System.out
> ------------------------------------------------------------------------------------
>
> Key: HADOOP-12416
> URL: https://issues.apache.org/jira/browse/HADOOP-12416
> Project: Hadoop Common
> Issue Type: Bug
> Components: trash
> Affects Versions: 2.6.0
> Reporter: Ashutosh Chauhan
> Assignee: Mingliang Liu
> Fix For: 2.8.0
>
> Attachments: HDFS-9037.000.patch
>
>
> Specifically,
> {code}
> if (success) {
> System.out.println("Moved: '" + p + "' to trash at: " +
> trash.getCurrentTrashDir() );
> }
> {code}
> should be:
> {code}
> if (success) {
> LOG.info("Moved: '" + p + "' to trash at: " +
> trash.getCurrentTrashDir());
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)