Log type

Signature:

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