|
|
@@ -960,8 +960,8 @@ public class MidjourneyServiceImpl implements MidjourneyService {
|
|
|
TASK_EXECUTOR.execute(() -> {
|
|
|
try {
|
|
|
sync(conversation);
|
|
|
- } catch (IOException e) {
|
|
|
- throw new RuntimeException(e);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("同步任务出错 taskId:{}, error:{}", conversation.getTaskId(), StringUtil.getErrorText(e));
|
|
|
}
|
|
|
});
|
|
|
|