1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-03-23 01:55:49 +05:30

feat: added debug mode and optimized logging

This commit is contained in:
2025-10-26 23:48:35 +05:30
Verified
parent 14fed76c1e
commit 9150fc22f7
8 changed files with 101 additions and 19 deletions

View File

@@ -1,6 +1,6 @@
export interface Log {
timestamp: number;
level: 'info' | 'warning' | 'error' | 'debug';
level: 'info' | 'warning' | 'error' | 'debug' | 'progress';
context: string;
message: string;
}
}