chore: 添加应用诊断日志

This commit is contained in:
Wxw-Gu
2026-07-23 16:09:20 +08:00
parent 0d544275c0
commit 62f729d281
9 changed files with 258 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
export type AppLogLevel = 'info' | 'warn' | 'error'
export interface AppLogEntry {
level: AppLogLevel
scope: string
message: string
details?: Record<string, unknown>
}