feat: better log handling

This commit is contained in:
Strix 2025-02-05 11:24:37 +01:00
parent 4b00caf7d4
commit 3fd3881d70
8 changed files with 108 additions and 80 deletions

View file

@ -3,6 +3,7 @@ import { LogLevel } from "./LogLevel";
export interface ILogItem {
timestamp: Date;
origin?: string;
flags?: string[];
level: LogLevel;
data: any;
}