DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=31153>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31153

Task.handleErrorFlush()

           Summary: Task.handleErrorFlush()
           Product: Ant
           Version: 1.6.2
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Core
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The javadoc for org.apache.tools.ant.Tash.handleErrorFlush describes it at
'Handles an error line by logging it with the ERR priority'. But in the source
it calls handleErrorOutput, which logs with WARN priority.

protected void handleErrorFlush(String output) {
    handleErrorOutput(output);
}

should be

protected void handleErrorFlush(String output) {
    log(output, org.apache.tools.ant.Project.MSG_ERR);
}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to