Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 131373
Collapse All | Expand All

(-)antadapter/org/eclipse/jdt/core/JDTCompilerAdapter.java (-13 / +2 lines)
Lines 280-298 Link Here
280
		/*
280
		/*
281
		 * verbose option
281
		 * verbose option
282
		 */
282
		 */
283
		if (this.verbose && this.destDir != null) {
283
		if (this.verbose) {
284
			/*
284
			cmd.createArgument().setValue("-verbose"); //$NON-NLS-1$
285
			 * if destDir is null, we don't generate any log.
286
			 * See https://bugs.eclipse.org/bugs/show_bug.cgi?id=97744
287
			 */
288
			// Fix for https://bugs.eclipse.org/bugs/show_bug.cgi?id=96605
289
			// cmd.createArgument().setValue("-verbose"); //$NON-NLS-1$
290
			/*
291
			 * extra option allowed by the Eclipse compiler
292
			 */
293
			cmd.createArgument().setValue("-log"); //$NON-NLS-1$
294
			this.logFileName = this.destDir.getAbsolutePath() + ".log"; //$NON-NLS-1$
295
			cmd.createArgument().setValue(this.logFileName);			
296
		}
285
		}
297
286
298
		/*
287
		/*

Return to bug 131373