|
@@ -75,9 +75,9 @@ public class ConfigExamPaperTask {
|
|
|
}
|
|
|
|
|
|
if (!errors.isEmpty()) {
|
|
|
- // throw new RuntimeException(StringUtils.join(errors, " "));
|
|
|
- log.error(StringUtils.join(errors, " "));
|
|
|
- throw new RuntimeException(errors.get(0));
|
|
|
+ String err = StringUtils.join(errors, " \n");
|
|
|
+ log.error(err);
|
|
|
+ throw new RuntimeException(err);
|
|
|
}
|
|
|
}
|
|
|
|