* !44 comment
* !39 添加下行日志打印
* !36 扩展计价领域模型
* !35 webui 初步成型
* !34 webui 初步成型
This commit is contained in:
三丙
2025-09-09 08:23:59 +00:00
parent 921045af8f
commit 58580ca11e
372 changed files with 37900 additions and 1206 deletions

View File

@@ -60,12 +60,12 @@ public class KafkaAdmin implements QueueAdmin {
}
case null, default -> {
log.warn("[{}] Failed to create topic", topic, ee);
throw new RuntimeException(ee);
throw new RuntimeException("Kafka管理操作失败", ee);
}
}
} catch (Exception e) {
log.warn("[{}] Failed to create topic", topic, e);
throw new RuntimeException(e);
throw new RuntimeException("Kafka操作失败", e);
}
}