in src/main/java/org/jetbrains/uncrustify/UncrustifyAsyncFormattingService.java [142:152]
public void run() {
log.info("Running Uncrustify");
try {
format(prepareConfig());
} catch (IOException ex) {
log.warn("uncrustify service failed: " + ex.getMessage());
log.debug(ex);
formattingRequest.onError(UncrustifyBundle.message("uncrustify.process.error.title"),
UncrustifyBundle.message("uncrustify.process.error.generalException"));
}
}