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

feat: added neodlp logger and log viewer

This commit is contained in:
2025-09-02 00:15:29 +05:30
Verified
parent a280be323d
commit 9498464fa2
7 changed files with 120 additions and 15 deletions

6
src/types/logs.ts Normal file
View File

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