fix: prerelease fixes (#5793)

This commit is contained in:
Calum H.
2026-04-12 23:58:50 +00:00
committed by GitHub
parent 0b8b4fb516
commit 0713814d0c
6 changed files with 178 additions and 112 deletions
@@ -198,11 +198,13 @@ export function useServerManageCoreRuntime(options: UseServerManageCoreRuntimeOp
const handleLog = (data: Archon.Websocket.v0.WSLogEvent) => {
if (!shouldProcessEvent()) return
modrinthServersConsole.recordWsEvent({ event: 'log', ...data })
modrinthServersConsole.addLegacyLog(data.message)
}
const handleLog4j = (data: Archon.Websocket.v0.WSLog4jEvent) => {
if (!shouldProcessEvent()) return
modrinthServersConsole.recordWsEvent({ event: 'log4j', ...data })
modrinthServersConsole.addLog4jEvent(data)
}