int numberErrors = compiler.getCompilerErrorManager().getNumberOfSyntaxErrors();
addSuccessfulBuildLog(startTime, endTime, false, numberErrors);
Iterator<CompilerErrorDescriptor> errorIt = compiler.getCompilerErrorManager().iterator();
while (errorIt.hasNext()) {
CompilerErrorDescriptor error = errorIt.next();
addCompilerErrorBuildLog(error);
}
message = computeStandardSpokenCompilerError(event, compiler);
if (TextToSpeechOptions.isScreenReading()) {
speech.speak(message, SpeechPriority.HIGHEST);