Implemented audit log system

This commit is contained in:
2026-02-12 14:48:19 -05:00
parent ab9bb99987
commit 34ce7d1e14
5 changed files with 122 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
export type LogDepth = 'normal' | 'verbose' | 'profiling';
export type LogType = 'http' | 'app' | 'auth' | 'profiling';
export type LogType = 'http' | 'app' | 'auth' | 'profiling' | 'audit';
export interface LogHeader {
timestamp: string;