> -----Original Message-----
> From: Diane Holt [mailto:[EMAIL PROTECTED]
> 
> > > That's all they got -- so I was trying to figure out why.
> > 
> > -verbose or -debug ?
> 
> Neither. Is one of those required?
> 

AFAIK you won't have the stacktrace but only the message if not at least in
verbose mode.

DefaultLogger:

           if (Project.MSG_VERBOSE <= msgOutputLevel ||
                !(error instanceof BuildException)) {
                message.append(StringUtils.getStackTrace(error));
            } else {
                if (error instanceof BuildException) {
                    message.append(error.toString()).append(lSep);
                } else {
                    message.append(error.getMessage()).append(lSep);
                }
            }

--
Stephane Bailliez
Software Engineer, Paris - France
HAHT - http://www.haht.com

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

Reply via email to