Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/powerlog/lib/types.ts>ILogData

A powerful logger for Deno.
Latest
interface ILogData
import { type ILogData } from "https://deno.land/x/powerlog@0.1.0/lib/types.ts";

The produced log data.

Properties

readonly
level: number

The level that was used to produce the data.

readonly
message: TMessage

The message to use when producing the content.

readonly
arguments: TArguments

The arguments to use when producing the content.

readonly
timestamp: Date

The date object of when this object was produced.

readonly
name: string

The name of the logger that produced the this object.