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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26453

Exec task displays 'error' mesage "Result: XX"

           Summary: Exec task displays 'error' mesage "Result: XX"
           Product: Ant
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The exec task displays the message "Result: whatever" at the MSG_ERR level, 
making it impossible to shut up, even with -quiet.

log("Result: " + returnCode, Project.MSG_ERR);

This line should be

log("Result: " + returnCode, Project.MSG_INFO);

or even

log("Result: " + returnCode, Project.MSG_VERBOSE);

If I want to know the result of the exec, I can print the resultproperty set by 
the exec task myself.

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

Reply via email to