Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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;
}

§Properties

§
format: string
[src]

The original format string

§
formattedMessage: string
[src]

The parsed log formatted according to outputFormat

§

THe LogLevel of this entry

§
message: string
[src]

The parsed log

§
variables: any
[src]

An object of raw variables from the string