mirror of
https://github.com/Wx-2025/ST-Amily2-Chat-Optimisation.git
synced 2026-06-07 14:25:50 +00:00
进行解耦合功能拆分处理
This commit is contained in:
10
core/bus.js
10
core/bus.js
@@ -1,11 +1,11 @@
|
||||
import { eventSource, event_types } from '/script.js';
|
||||
|
||||
export const LOG_LEVELS = {
|
||||
DEBUG: 0,
|
||||
INFO: 1,
|
||||
WARN: 2,
|
||||
ERROR: 3,
|
||||
NONE: 99
|
||||
DEBUG: 0b0001,
|
||||
INFO: 0b0010,
|
||||
WARN: 0b0100,
|
||||
ERROR: 0b1000,
|
||||
NONE: 0
|
||||
};
|
||||
|
||||
class FilePipe {
|
||||
|
||||
Reference in New Issue
Block a user