Community
Participate
Working Groups
/*
* verbose option
*/
if (this.verbose && this.destDir != null) {
if (this.verbose) {
cmd.createArgument().setValue("-verbose"); //$NON-NLS-1$
* if destDir is null, we don't generate any log.
* See https://bugs.eclipse.org/bugs/show_bug.cgi?id=97744
// Fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=96605
// cmd.createArgument().setValue("-verbose"); //$NON-NLS-1$
* extra option allowed by the Eclipse compiler
cmd.createArgument().setValue("-log"); //$NON-NLS-1$
this.logFileName = this.destDir.getAbsolutePath() + ".log"; //$NON-NLS-1$
cmd.createArgument().setValue(this.logFileName);
}