Appearance
Логи
Логи
logs. Хранит записи локального application logging, включая сообщения Pino, сохраненные в IndexedDB.
Интерфейс записи
ts
export interface LogEntry {
id?: number;
timestamp: number;
level: string;
message: string;
data?: any;
context?: string;
tags?: string[];
url?: string;
/** Unix timestamp when this log entry should be deleted during cleanup */
expirationDate?: number;
}