修改服务启动逻辑

This commit is contained in:
whyour
2025-05-07 09:30:00 +08:00
parent 729b405b0f
commit d871585eee
46 changed files with 802 additions and 564 deletions
+4 -4
View File
@@ -6,10 +6,10 @@ import {
} from '@codemirror/view';
import { RangeSet, RangeSetBuilder } from '@codemirror/state';
const infoWord = /\[\ue6f5info\]/g;
const debugWord = /\[\ue67fdebug\]/g;
const warnWord = /\[\ue880warn\]/g;
const errorWord = /\[\ue602error\]/g;
const infoWord = /\[info/g;
const debugWord = /\[⚠️debug/g;
const warnWord = /\[warn/g;
const errorWord = /\[🐛error/g;
const customWordClassMap = {
info: 'system-log-info',