LogEntry
import type { LogEntry } from "https://raw.githubusercontent.com/Yamboy1/deno-structured-logging/0.4.2/mod.ts";
A parsed log entry
interface LogEntry {
format: string;
formattedMessage: string;
level: LogLevel;
message: string;
variables: any;
}