Log type
Signature:
export type Log = {
level: "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
timestamp: Date;
message: string;
metadata: string;
};
Signature:
export type Log = {
level: "emergency" | "alert" | "critical" | "error" | "warning" | "notice" | "info" | "debug";
timestamp: Date;
message: string;
metadata: string;
};