feat: add scheduler log display

This commit is contained in:
duorameng
2026-05-14 17:49:59 +08:00
parent 51bee50ce4
commit 856cdfc137
12 changed files with 467 additions and 15 deletions
+5
View File
@@ -112,6 +112,11 @@ func (m *SystemWSManager) SubscribeEvents(bus *eventbus.EventBus) {
bus.Subscribe(constant.EventSystemNotice, func(e eventbus.Event) {
m.Broadcast("notice", e.Payload)
})
// 应用日志新增事件(驱动运行日志下属4大标签页实时流式刷新列表)
bus.Subscribe(constant.EventAppLogAdded, func(e eventbus.Event) {
m.Broadcast(e.Type, e.Payload)
})
}
func (c *ClientConnection) Close() {